当我想在openCV库中使用CV_WINDOW_AUTOSIZE常量和cvCreatTrackbar方法时遇到问题,我在Visual Studio的项目设置中的“其他包含库”中插入了include文件夹,还在“其他库”中添加了vc14 / lib文件夹目录设置中“链接器”选项卡中的“目录”,我也将它们包含在我的代码中。
#include <iostream>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
using namespace cv;
using namespace std;
但是然后我遇到错误:“ CV_WINDOW_AUTOSIZE未定义”和“ cvCreatTrackbar未定义”。问题是什么 ?
先谢谢您! :)