-
打开浏览器,进入OpenCV_examples的仓库(如果访问慢的话点这里)
或者 -
在网页上(见上图),点击Clone and download>>Download ZIP,将GitHub仓库下载到本地。
-
替换OpenCV路径:
利用替换,搜索D:\\opencv411\\build\\install
替换成本电脑OpenCV所在目录的build\\install路径,注意一定要把 \ 写成 \\
(下图在Notepad++上编辑的界面)
-
导入模块的方法:
(在之前没打开过任何工程的时候>>import project from sources)
(在之前有打开过任何工程的时候) -
输入之前解压后GitHub仓库的路径
#include "OpenCV_example.hpp"
#include <iostream>
int main() {
return 0;
}
-
运行一个程序案例:
假设要运行课本案例的Logo.cpp,在main.cpp文件的main函数里写上一行:run_logo();
-
设置运行参数(run>>Edit Configurations),讲working directory设置为当前工程的路径: