需要包含的头文件和使用的命名空间
#include <opencv2/xfeatures2d.hpp>
using namespace xfeatures2d;
创建和使用SURF函数
Ptr<SURF> surf = SURF::create();
surf->detect(srcGrayImage, keyPoint);
需要包含的头文件和使用的命名空间
#include <opencv2/xfeatures2d.hpp>
using namespace xfeatures2d;
创建和使用SURF函数
Ptr<SURF> surf = SURF::create();
surf->detect(srcGrayImage, keyPoint);