使用SurfFeatureDetector需要什么头文件或者申明
时间: 2023-06-09 08:07:07 浏览: 87
使用SurfFeatureDetector需要以下头文件和命名空间申明:
```c++
#include <opencv2/features2d.hpp>
using namespace cv;
```
相关问题
在OpenCV4.6版本下,使用SurfFeatureDetector需要什么头文件或者申明
对于OpenCV4.6版本下使用SurfFeatureDetector,需要包含以下头文件:
```c++
#include <opencv2/opencv.hpp>
#include <opencv2/xfeatures2d.hpp>
```
同时也需要引用以下命名空间:
```c++
using namespace cv;
using namespace cv::xfeatures2d;
```
请注意:以上的头文件及命名空间都是需要在使用SurfFeatureDetector之前进行包含和引用的。
使用detail->SurfFeaturesFinder,需要什么头文件或者申明吗
感谢您的提问。关于使用detail->SurfFeaturesFinder,需要包含以下头文件:
#include <opencv2/nonfree/features2d.hpp>
#include <opencv2/legacy/legacy.hpp>
阅读全文