基本信息
源码名称:opencv harris角点检测
源码大小:1.42KB
文件格式:.cpp
开发语言:C/C++
更新时间:2020-03-11
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
#include <opencv2/opencv.hpp> #include <iostream> using namespace cv; using namespace std; Mat src, gray_src; int thresh = 130; int max_count = 255; const char* output_title = "HarrisCornerDetection Result"; void Harris_Demo(int, void*); int main(int argc, char** argv) { src = imread("D:/vcprojects/images/home.jpg"); if (src.empty()) { printf("could not load image...\n"); return -1; } namedWindow("input image", CV_WINDOW_AUTOSIZE); imshow("input image", src); namedWindow(output_title, CV_WINDOW_AUTOSIZE); cvtColor(src, gray_src, COLOR_BGR2GRAY); createTrackbar("Threshold:", output_title, &thresh, max_count, Harris_Demo); Harris_Demo(0, 0); waitKey(0); return 0; } void Harris_Demo(int, void*) { Mat dst, norm_dst, normScaleDst; dst = Mat::zeros(gray_src.size(), CV_32FC1); int blockSize = 2; int ksize = 3; double k = 0.04; cornerHarris(gray_src, dst, blockSize, ksize, k, BORDER_DEFAULT); normalize(dst, norm_dst, 0, 255, NORM_MINMAX, CV_32FC1, Mat()); convertScaleAbs(norm_dst, normScaleDst); Mat resultImg = src.clone(); for (int row = 0; row < resultImg.rows; row ) { uchar* currentRow = normScaleDst.ptr(row); for (int col = 0; col < resultImg.cols; col ) { int value = (int)*currentRow; if (value > thresh) { circle(resultImg, Point(col, row), 2, Scalar(0, 0, 255), 2, 8, 0); } currentRow ; } } imshow(output_title, resultImg); }