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"

本文转自博客园Grandyang的博客,原文链接:FlyCapture2 VS2010 Configuration,如需转载请自行联系原博主。

相关文章
|
8月前
|
Java 数据库连接 数据库
@Configuration大悟!
@Configuration大悟!
|
8月前
|
XML Java 数据格式
@Configuration的作用
@Configuration的作用
175 1
|
8月前
|
XML Java 数据格式
|
XML Java 程序员
Spring启动报错--class path resource [Beans.xml] cannot be opened because it does not exist
程序员不是在去生产bug的路上,那就是在去解决bug的路上。🤣🤣🤣🤣
297 1
|
Java 数据库连接
org.hibernate.cfg.Configuration.addAnnotatedClass(Ljava/lang/Class;)Lorg/hibernate/cfg/Configuration
Error creating bean with name 'entityManagerFactory' defined in file [E:\eclipseworkspace\wms_ims\.metadata\.plugins\org.eclipse.wst.server.core\tmp9\wtpwebapps\shopping\WEB-INF\classes\applicationContext-configuration.xml]: Invocation of init method failed; nested exception is java.lang.NoSuchMetho
110 0
|
XML 存储 SQL
Configuration和Mapper|学习笔记
快速学习Configuration和Mapper
184 0
Configuration和Mapper|学习笔记
|
Java Spring 容器
@Configuration注解
@Configuration注解
173 0
|
Java Spring
SpringBoot中@ConfigurationProperties提示:Configuration Annotation Processor not found in classpath
SpringBoot中@ConfigurationProperties提示:Configuration Annotation Processor not found in classpath
420 0