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,如需转载请自行联系原博主。

相关文章
|
2月前
|
XML Java 数据格式
|
9月前
|
XML Java 程序员
Spring启动报错--class path resource [Beans.xml] cannot be opened because it does not exist
程序员不是在去生产bug的路上,那就是在去解决bug的路上。🤣🤣🤣🤣
85 1
|
10月前
@Configuration要求
@Configuration要求
|
10月前
|
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
74 0
|
XML 存储 SQL
Configuration和Mapper|学习笔记
快速学习Configuration和Mapper
120 0
Configuration和Mapper|学习笔记
|
Java Spring 容器
@Configuration注解
@Configuration注解
115 0
What is Drilldown configuration
Created by Wang, Jerry on Aug 25, 2015
What is Drilldown configuration
|
Python Windows Web App开发
VS Code Plugins And Configuration
VS Code插件 vscode-icons: 显示文件类型的图标 project manager: 管理项目, 项目的保存加载与切换 beautify: 控制缩进 code runner: 执行代码 debugger for chrome eslint: 代码规范检测 include autocomplete: 头文件自动补全, json配置文件为c_cpp_properties.
1080 0
|
Java Spring 数据格式
@Configuration和@Bean
@Configuration可理解为用spring的时候xml里面的 @Bean可理解为用spring的时候xml里面的 Spring Boot不是spring的加强版,所以@Configuration和@Bean同样可以用在普通的spring项目中,而不是Spring Boot特有的,只是在spr...
1308 0

热门文章

最新文章