• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: C/C++
  • 标签: C++  opencv  

资源简介

带旋转的模板匹配算法,能够匹配带旋转角度的模板。VS 2015+OPENCV C++实现

资源截图

代码片段和文件信息

#include
#include
//#include
#include

using namespace cv;
using namespace std;

//ROI区域的位置信息
#define xx 100//300//  //横坐标
#define yy 100//80//240//   //纵坐标
#define zz 300//400//  //正方形ROI区域的边长

#define PI 3.14159267989

#define ModelPATH “..\\ConsoleApplication1\\picture\\my Logo.bmp“//模板图像路径
#define SearchPATH “..\\ConsoleApplication1\\picture\\my Logo.bmp“//待检测图像路径

int nThresh = 80;//二值化处理的控制阈值,最大值为255

//图片旋转函数
void imrotate(Mat &img Mat &newIm double angle)//img:输入图片;newIm:输出图片;angle:旋转角度(°)
{
//int len = max((img.cols) (img.rows));
//Point2f pt(len / 2.0 len / 2.0);
//Mat r = getRotationMatrix2D(pt angle 1.0);
//warpAffine(img newIm r Size(len len));

//better performance :
Point2f pt(img.cols / 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        8420  2018-09-10 00:19  Match.cpp

评论

共有 条评论