FlyCapture2 VS2010 Configuration
Add in the system Path:
C:\Program Files (x86)\Point Grey Research\FlyCapture2\bin
Project->Project Property->Configuration Properties->VC++Directories ->Include Directories:
C:\Program Files (x86)\Point Grey Research\FlyCapture2\include
C:\Program Files (x86)\Point Grey Research\FlyCapture2\include\FC1
C:\Program Files (x86)\Point Grey Research\FlyCapture2\include\C
Project->Project Property->Configuration Properties->VC++Directories ->Library Directories:
C:\Program Files (x86)\Point Grey Research\FlyCapture2\lib
C:\Program Files (x86)\Point Grey Research\FlyCapture2\lib\C
C:\Program Files (x86)\Point Grey Research\FlyCapture2\lib\FC1
Project->Project Property->Configuration Properties->C/C++ ->Preprocessor->Preprocessor Definitions:
WIN32
_DEBUG
_CONSOLE
Project->Project Property->Configuration Properties->Linker->Input:
FlyCapture2_C.lib
FlyCapture2GUI_C.lib
FlyCapture2.lib
FlyCapture2GUI.lib
FlyCapture2GUId.lib
Include in the headfile:
#include "FlyCapture2.h"
#include "FlyCapture2_C.h"
------------------------------------------------------------------------------------------------------------------------------------------
If we install the SDK at "C:\PointGreyResearch\" in order to get rid of spaces
Only use C API, then do the following:
Project->Project Property->Configuration Properties->VC++Directories ->Include Directories:
C:\PointGreyResearch\FlyCapture2\include
Project->Project Property->Configuration Properties->VC++Directories ->Library Directories:
C:\PointGreyResearch\FlyCapture2\lib\C
Project->Project Property->Configuration Properties->Linker->Input:
FlyCapture2_C.lib
FlyCapture2_Cd.lib
FlyCapture2GUI_C.lib
FlyCapture2GUI_Cd.lib
Include in the headfile:
#include "C/FlyCapture2_C.h"
Only use C++ API, then do the following:
Project->Project Property->Configuration Properties->VC++Directories ->Include Directories:
C:\PointGreyResearch\FlyCapture2\include
Project->Project Property->Configuration Properties->VC++Directories ->Library Directories:
C:\PointGreyResearch\FlyCapture2\lib
Project->Project Property->Configuration Properties->Linker->Input:
FlyCapture2.lib
FlyCapture2d.lib
FlyCapture2GUI.lib
FlyCapture2GUId.lib
Include in the headfile:
#include "FlyCapture2.h"
FlyCapture2 VS2010 Configuration的更多相关文章
- ITK 3.20.1 VS2010 Configuration 配置
Download ITK 3.20.1 Download VS2010 Download CMake 3.2.0 I assume you've already installed VS2010 an ...
- VTK 5.10.1 VS2010 Configuration 配置
Download VTK 5.10.1 Download VS2010 Download CMake 3.2.0 I assume you've already installed VS2010 an ...
- FLTK 1.1.10 VS2010 Configuration 配置
Download FLTK 1.1.10 at here. Download VS2010 Download CMake 2.8.12 I assume you've already installe ...
- PCL 1.6.0 VS2010 Configuration
Open VS2010, create a new project, then open Property Manager, double-click Microsoft.Cpp.win32.user ...
- OpenCV 3.0 VS2010 Configuration
Add in the system Path: C:\opencv\build\x86\vc10\bin; Project->Project Property->Configuration ...
- OpenCV 2.4.11 VS2010 Configuration
Add in the system Path: C:\opencv\build\x86\vc10\bin; Project->Project Property->Configuration ...
- FlyCapture2 Qt5 MinGW Configuration
Install FlyCatprue2 to the folder "C:\PointGreyResearch\" Add the following to the .pro fi ...
- Configuration of OpenCV2.1.0 with VS2010
Add in the system Path: C:\Program Files (x86)\OpenCV-2.1.0\build\bin\Debug Project->Project Prop ...
- VS2010 OpenCV 2.4.6 配置 (Win7 32位)
1.下载安装OpenCV 下载OpenCV-2.4.6.0 (文件大小 291M),下载地址如下,下载完成后解压缩到路径%OpenCV%下,本文%OpenCV%=E:\图像处理与计算机视觉. http ...
随机推荐
- Django的Context和RequestContext
参考:http://www.dannysite.com/blog/38/ Django的模板渲染中,Context可以用来传递数据,一个Context是一系列变量和值的集合,它和Python的字典有点 ...
- object-c面向对象2
我们知道在c#中有访问私有成员变量的get 和set方法.这个目的是用来公开实力对象的私有变量.我看了下ios的访问修饰符.也就是private,public,protected.这些基本上都和c# ...
- [转]C程序内存区域分配(5个段作用)
[转]C程序内存区域分配(5个段作用) 2012-08-10 14:45:32| 分类: C++基础|字号 订阅 参考:http://www.360doc.com/content/11/03 ...
- iOS 中使用Base64编码方式编码图片数据
最近一个项目要求对图片数据简单加密下,就是那种不能直接看到图片内容就行.于是我使用了base64编码对图片数据进行编码,把图片2进制数据变成了base64的字符串,再把这个字符串保存到server的数 ...
- Java for LeetCode 143 Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do th ...
- Linux下RPM、tar.gz、DEB格式软件包的区别
初接解Linux的朋友一定对软件的安装特别头疼,同样都是for Linux,但RPM.tar.gz.DEB包还是有很大区别的,这种区别很有可能使你的安装过程进行不下去.那我们应该下载什么格式的包呢 ...
- Xshell 中文乱码
Xshell对于嵌入式开发来说,是个非常不错的工具.但或许都有过被中文显示为乱码的问题感觉有点不爽.解决方法其实很简单的,即把xshell编码方式改成UTF-8即可. [文件]–>[打开]–&g ...
- 分布式架构从零开始========》【基于Java自身技术实现消息方式的系统间通信】
基于Java自身包实现消息方式的系统间通信的方式有:TCP/IP+BIO,TCP/IP+NIO,UDP/IP+BIO,UDP/IP+NIO.下面就这4种类型一一做个详细的介绍: 一.TCP/IP+BI ...
- 关于Android中RemoveView的错误理解
我以前一直以为,一个View被removeView了之后,就会被回收.其实不是这样的.如果有人引用它. 它还是会存在的.removeView和View被回收没有必然的关系.一个View被removeV ...
- HDU 1796 How many integers can you find 容斥入门
How many integers can you find Problem Description Now you get a number N, and a M-integers set, y ...