• 大小: 1.42KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: opencv  

资源简介

opencv harris角点检测

资源截图

代码片段和文件信息

#include 
#include 

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 Ha

评论

共有 条评论