gpt4 book ai didi

c++ - 在 OpenCV 3.0.0 中包含非自由模块

转载 作者:太空宇宙 更新时间:2023-11-03 22:04:51 25 4
gpt4 key购买 nike

#include <opencv2\features2d\features2d.hpp>

using namespace cv;
using namespace cv::xfeatures2d;
using namespace std;

int main(int argc, char *argv[])
{
Ptr<SURF> surf = SURF::create();

return 0;
}

以下代码报错:

/home/shivam/1.cpp:2:45: fatal error: opencv2\features2d\features2d.hpp: No such file or directory
#include <opencv2\features2d\features2d.hpp>

但是头文件包含在include\opencv2\features2d\features2d.hpp中。看看这个截图: location of features2d.hpp这是我的 1.cpp 的 cmake 文件

cmake_minimum_required(VERSION 2.8)
project( 1 )
find_package( OpenCV REQUIRED )
add_executable( 1 1.cpp )
target_link_libraries( 1 ${OpenCV_LIBS} )

最佳答案

在 OpenCV 3.0.0 中,nonfree 模块位于 xfeatures2d 中,而不是 features2d

此代码将编译:

#include <opencv2\opencv.hpp>
#include <opencv2\xfeatures2d.hpp>

using namespace cv;
using namespace cv::xfeatures2d;

int main(int argc, char *argv[])
{
Ptr<SURF> surf = SURF::create();
return 0;
}

关于c++ - 在 OpenCV 3.0.0 中包含非自由模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32542847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com