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 ...
随机推荐
- vi命令的基础知识
vi编辑器是所有Unix及Linux系统下标准的编辑器,它的强大不逊色于任何最新的文本编辑器,先说说一下它的用法和一小部分指令.由于对Unix及Linux系统的任何版本,vi编辑器是完全相同的,因此您 ...
- mysql 我的学习
安装要求 安装环境:CentOS-6.3安装方式:源码编译安装 软件名称:mysql-cluster-gpl-7.2.6-linux2.6-x86_64.tar.gz下载地址:http://mysql ...
- Java for LeetCode 036 Valid Sudoku
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could be ...
- codeforces 489B. BerSU Ball 解题报告
题目链接:http://codeforces.com/problemset/problem/489/B 题目意思:给出 n 个 boys 的 skills 和 m 个 girls 的 skills,要 ...
- codeforces A. Rook, Bishop and King 解题报告
题目链接:http://codeforces.com/problemset/problem/370/A 题目意思:根据rook(每次可以移动垂直或水平的任意步数(>=1)),bishop(每次可 ...
- FZU 2140 Forever 0.5 (几何构造)
Forever 0.5 Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit ...
- Java数据类型和运算符
一,数据类型分类(2种) 1. 基本数据类型(3种) 数值型: 整数类型(4种): byte(1字节):范围(-128~127): short(2字节):范围(-32768~32767): int(4 ...
- Oracle 性能查看
http://blog.chinaunix.net/uid-20784775-id-373968.html
- DB2修改表字段
1:删除字段非空属性 alter table XXX alter column XXX drop not null 此特性需要DB2 9.0以上的版本 2:添加字段非空属性alter table XX ...
- linux&mac下查看端口被哪个进程占用
mac : lsof -i:8080 linux : neststat -anltp | grep 8080