SURF——绘制特征点

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
#include<xfeatures2d/nonfree.hpp>
using namespace cv;
using namespace std;
using namespace cv::xfeatures2d;
Mat image;
int main()
{
	image = imread("C:/Users/zhang/Desktop/4.png");
	imshow("原图像", image);
	int Hessian = 400;//海塞矩阵阈值,在这里调整精度,值越大点越少,越精准 
	Ptr<SURF> Detector = SURF::create(Hessian); 
	vector<KeyPoint>  keyPoint;//KeyPoint专门为特征点建立的坐标类型
	Detector->detect(image, keyPoint);//detect寻找特征点的坐标
	Mat point_image;
	drawKeypoints(image, keyPoint, point_image, Scalar::all(-1), DrawMatchesFlags::DEFAULT);//画出特征点
	//Scalar::all(-1)为随机颜色
	imshow("特征点", point_image);

	waitKey(0);
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值