安装OpenCV3.1 与VS2015配置主要步骤

Main Steps to set up OpenCV in Visual Studio 2015 (OS: Windows 10, X64)

Ref: https://www.youtube.com/watch?v=l4372qtZ4dc

(1) Install Visual Studio 2015

(2) Install OpenCV 3.1

(3) Set the environment variable of OpenCV

Click Edit, then copy the path of OpenCV bin: for example

E:\OpenCV\opencv\build\x64\vc14\bin

Click "New", and paste the path. Click and finish.

(4) Build a new sample project to include the Directories and link the libraries.

Build a new Win32 console application, add a new source file (.cpp). Copy the content in a existed sample cpp in the opencv folder into the .cpp. For example, find a file in ‘E:\OpenCV\opencv\sources\samples\cpp\tutorial_code\ImgProc‘.

Since the libraries have not been included in the project yet, there are errors when using "including" the opencv related files.

Go to project properties, paste the ‘include‘ path of OpenCV into "Addiditional Include Directories" in ‘C/C++‘ property. Apply it.

Then we need to link the libraries.

Copy the library path of OpenCV into "Addidional Library Directories" in Linker property. Apply it.

Then add the specific library (.lib) into "Additional Dependencies" in the ‘Input‘ of Linker property, by clicking downward arrow and edit. This .lib file can be found in the above directory.

  • ‘opencv_world310d.lib‘ is for debug mode;
  • ‘opencv_world310.lib‘ is for release mode.

Here we use debug mode, so write opencv_world310d.lib into "Additional Dependencies".

Finished!



<wiz_tmp_tag id="wiz-table-range-border" contenteditable="false" style="display: none;">

From WizNote

时间: 2024-11-08 13:08:11

安装OpenCV3.1 与VS2015配置主要步骤的相关文章

win10下vs2015配置Opencv3.1.0过程详解(转)

下载安装Opencv3.1.0 下载Opencv3.1.0,进入官网,点击opencv for windows即可下载.  点击运行下载好的文件.实际上,opencv的安装程序就是解压缩文件,个人因为只有C盘,所以就直接在C盘建了一个文件夹Opencv3.1.0.  选好路径之后点击Extract即可. OpenCV3.1.0环境变量配置 选择此电脑(计算机),右键属性->高级系统设置->环境变量->系统变量->找到Path->在变量值中添加相应路径,我的路径是 C:\Ope

win10下vs2015配置Opencv3.1.0过程详解

下载安装Opencv3.1.0 下载Opencv3.1.0,进入官网,点击opencv for windows即可下载.  点击运行下载好的文件.实际上,opencv的安装程序就是解压缩文件,个人因为只有C盘,所以就直接在C盘建了一个文件夹Opencv3.1.0.  选好路径之后点击Extract即可. OpenCV3.1.0环境变量配置 选择此电脑(计算机),右键属性->高级系统设置->环境变量->系统变量->找到Path->在变量值中添加相应路径,我的路径是 C:\Ope

mahout安装和配置简明步骤

①在官网下载最新的mahout版本,放在linux本机系统的/usr/local/目录下,然后解压即可 tar -zxvf mahout-distribution-0.9.tar.gz ②重命名解压后的文件夹为mahout mv mahout-distribution-0.9 mahout ③执行vi /etc/profile 配置mahout的环境,内容如下: ④执行source /etc/profile使得配置文件立即生效 ⑤下载测试数据进行测试: 下载一个文件synthetic_contr

Android Studio安装配置详细步骤(图文)

Android studio 教程 为什么要使用Android Studio Android Studio是谷歌推出了新的Android开发环境,其重要性可想而知! 1. 集成了Gradle 打包工具 2. 所见即所得的效果 3. 可拖拽的UI操作 4. 代码自动补全 5. 更多的操作接口 6. Google Cloud的集成 7. 全新的JUnit 8. Maven仓库的集成 下载 到 https://developer.android.com/sdk/index.html (需翻墙)或者ht

Android Studio 安装配置详细步骤及使用的基本操作

前言 可能大家对Android Studio已经不是很陌生了,是Google针对Android开发推出的新的开发工具,目前很多开源项目都已经在采用,Google的更新速度也很快,明显能感觉到这是Android开发的未来,那么我们还有什么理由不去拥抱未来呢? 这篇文章是对这期间我是用Android Studio的一个基本的总结,包括首次安装和配置等.由于我也是和广发Android开发者一样,一直使用的Eclipse+ADT+SDK环境,已经习惯了原有的方式,可能不太喜欢接收这个新鲜的工具,但是之前

Android Studio 安装配置详细步骤,以及使用的基本操作

可能大家对Android Studio已经不是很陌生了,是Google针对Android开发推出的新的开发工具,目前很多开源项目都已经在采用,Google的更新速度也很快,明显能感觉到这是Android开发的未来,那么我们还有什么理由不去拥抱未来呢? 这篇文章是对这期间我是用Android Studio的一个基本的总结,包括首次安装和配置等.由于我也是和广发Android开发者一样,一直使用的Eclipse+ADT+SDK环境,已经习惯了原有的方式,可能不太喜欢接收这个新鲜的工具,但是之前看网上

VS2015 配置opengl的一些库

opengl在windows下默认是很低的版本,需要自己更新驱动,驱动之中含有最新的函数.Opengl是一个协议,就是实现一些函数.对不同版本,在管程.渲染的方面有和你打的区别.这个要结合第一点. 1 实验环境搭配 环境搭配具体做什么?下载库,其实就是三个文件,动态库文件,静态库文件和头文件,把他们分别拷贝到某些目录下即可,再去学习怎么在代码中引用库,静态文件和#include头文件类似,VS要加#pragma comment(lib,”path”)要引用外接静态库.嗯,就是酱紫.很简单. 1.

在win10下实现openCV3.2.0+vs2015+cmake出错解决方案

在研究sift算法时发现opencv3.X版本中有些库函数被去掉了.网上查了一下,确实没有sift算法这部分代码了,需要通过网上下载附加库opencv_contrib-3.2.0进行cmake编译就可以用了,于是进入漫长的cmake编译之旅!! 1.网上下载cmake 进入网站下载一个cmake,这里我下的是当前网站上的最新版本,个人觉得这个对编译影响不大.进入界面下载如下方式: 这里选择: Windows win64-x64 Installer: Installer tool has chan

VS2015配置Linux开发远程调试

# VS2015配置Linux开发远程调试 ### 简介-----------------------------vs2015支持跨平台开发 ### 软件环境------------------------------ VS2015 update3- Visual C++ for Linux Development(VC_Linux.exe) ### 安装步骤------------------------------ 安装VS2015 update3版本(直接按照后就是VS2015,不是补丁)