当前位置: 首页 > wzjs >正文

企业网站备案资料登录百度账号注册

企业网站备案资料,登录百度账号注册,效果型网站建设,海外网络推广外包一、简介 💢 SIFT特征匹配效果较差,谨慎使用。 主要用于在目标图像中找到模板图像的位置,支持单尺度模板匹配(TemplateMatcher)、多尺度模板匹配(MultiScale)和SIFT特征匹配(SIFTFe…

一、简介

💢 SIFT特征匹配效果较差,谨慎使用。

  1. 主要用于在目标图像中找到模板图像的位置,支持单尺度模板匹配(TemplateMatcher)、多尺度模板匹配(MultiScale)和SIFT特征匹配(SIFTFeatureMatcher)三种方法。

  2. 正常使用时: 可以通过调用im_match函数选择最佳匹配结果;

  3. 调试代码: 确认图像识别准确率时,可以draw_rectangle函数绘制匹配区域和中心点以便查看识别效果

    • 加载图像: 需要使用OpenCV加载目标图像和模板图像,格式为numpy数组。

    • 匹配图像: 调用im_match函数,输入图像、模板和置信度阈值(默认0.6),返回匹配的坐标。

    • 绘制结果: 用draw_rectangle函数在图像上绘制矩形,输入图像路径和坐标,返回绘制后的图像和中心点。

二、类和函数详细说明

TemplateMatcher类

1. 功能:

执行标准模板匹配,使用OpenCVmatchTemplate函数,方法默认使用cv2.TM_CCOEFF_NORMED,适合模板和图像尺寸一致的场景。

2. 属性:

  • method:模板匹配方法(默认cv2.TM_CCOEFF_NORMED)。

  • threshold:最小置信度阈值(默认0.7)。

3. 方法:

  • __init__(self, method=cv2.TM_CCOEFF_NORMED, threshold=0.7):初始化匹配器,设置方法和阈值。

  • match(self, image, template):执行模板匹配。

    • 参数:

      • image (numpy.ndarray):目标图像。

      • template (numpy.ndarray):模板图像。

    • 返回:

      • 元组(top_left, bottom_right, confidence),其中:

        • top_left:匹配的左上角坐标(x, y)。

        • bottom_right:匹配的右下角坐标(x, y)。

        • confidence:置信度值(0到1之间)。

      • 若未找到匹配(置信度低于阈值),返回((0, 0), (0, 0), 0)。

相关代码片段:

class TemplateMatcher:def __init__(self, method=cv2.TM_CCOEFF_NORMED, threshold=0.7):self.method = methodself.threshold = max(0.7, threshold)def match(self, image, template):h, w = template.shape[:2]res = cv2.matchTemplate(image, template, self.method)min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)if max_val >= self.threshold:top_left = max_locbottom_right = (top_left[0] + w, top_left[1] + h)return top_left, bottom_right, round(max_val, 3)else:return (0, 0), (0, 0), 0

MultiScale类

1. 功能:

执行多尺度模板匹配,通过缩放模板(默认比例1.0到0.5,步长0.1)进行多次匹配,适合处理不同尺寸的模板。

2. 属性:

  • scales:缩放比例列表(默认[1.0, 0.9, 0.8, 0.7, 0.6, 0.5])。

  • threshold:最小置信度阈值(默认0.7)。

3. 方法:

  • __init__(self, scales=None, threshold=0.7):初始化多尺度匹配器,设置缩放比例和阈值。

  • match(self, image, template, method=cv2.TM_CCOEFF_NORMED):执行多尺度模板匹配。

    • 参数:

      • image (numpy.ndarray):目标图像。

      • template (numpy.ndarray):模板图像。

      • method (int):模板匹配方法(默认cv2.TM_CCOEFF_NORMED)。

    • 返回:

      • 元组(top_left, bottom_right, confidence),其中:

        • top_left:匹配的左上角坐标(x, y)。

        • bottom_right:匹配的右下角坐标(x, y)。

        • confidence:置信度值(0到1之间)。

      • 若未找到匹配(置信度低于阈值),返回((0, 0), (0, 0), 0)。

相关代码片段:

class MultiScale:def __init__(self, scales=None, threshold=0.7):if scales is None:self.scales = [1.0, 0.9, 0.8, 0.7, 0.6, 0.5]else:self.scales = scalesself.threshold = max(0.7, threshold)def match(self, image, template, method=cv2.TM_CCOEFF_NORMED):template_h, template_w = template.shape[:2]best_loc = Nonebest_scale = 1best_value = -1for scale in self.scales:resized = cv2.resize(template, None, fx=scale, fy=scale, interpolation=cv2.INTER_AREA)res = cv2.matchTemplate(image, resized, method)min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)if max_val > best_value and max_val > self.threshold:best_value = max_valbest_loc = max_locbest_scale = scaleif best_loc is not None:best_h, best_w = int(template_h * best_scale), int(template_w * best_scale)top_left = best_locbottom_right = (top_left[0] + best_w, top_left[1] + best_h)return top_left, bottom_right, round(best_value, 3)else:return (0, 0), (0, 0), 0

SIFTFeatureMatcher类

1. 功能:

使用SIFT算法进行特征匹配,适合处理旋转和缩放的场景,通过检测关键点和描述符进行匹配。

2. 属性:

  • sift (cv2.SIFT):SIFT特征检测器和描述符。

3. 方法:

  • __init__(self):初始化SIFT检测器。

  • match(self, image, template):执行特征匹配。

    • 参数:

      • image (numpy.ndarray):目标图像。

      • template (numpy.ndarray):模板图像。

    • 返回:

      • 元组(start_point, end_point),其中:

        • start_point:匹配的左上角坐标(x1, y1)。

        • end_point:匹配的右下角坐标(x2, y2)。

      • 若未找到匹配,返回((0, 0), (0, 0))。

相关代码片段:

class SIFTFeatureMatcher:def __init__(self):self.sift = cv2.SIFT_create()def match(self, image, template):img1_gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)img2_gray = cv2.cvtColor(template, cv2.COLOR_BGR2GRAY)kp1, des1 = self.sift.detectAndCompute(img1_gray, None)kp2, des2 = self.sift.detectAndCompute(img2_gray, None)matcher = cv2.BFMatcher()matches = matcher.knnMatch(des1, des2, k=2)good = []for m, n in matches:if m.distance < 0.75 * n.distance:good.append(m)if len(good) > 10:src_pts = np.float32([kp1[m.queryIdx].pt for m in good]).reshape(-1, 1, 2)dst_pts = np.float32([kp2[m.trainIdx].pt for m in good]).reshape(-1, 1, 2)M, mask = cv2.findHomography(dst_pts, src_pts, cv2.RANSAC, 5.0)h, w = template.shape[:2]pts = np.float32([[0, 0], [0, h-1], [w-1, h-1], [w-1, 0]]).reshape(-1, 1, 2)dst = cv2.perspectiveTransform(pts, M)points = list(np.int32(dst).flatten())y1, x1 = points[0:2]y2, x2 = points[4:6]return (x1, y1), (x2, y2)else:return (0, 0), (0, 0)

im_match函数

1. 功能:

结合TemplateMatcher和MultiScale的结果,找到最佳匹配。

2. 参数:

  • image (numpy.ndarray):目标图像。

  • template (numpy.ndarray):模板图像。

  • threshold (float):最小置信度阈值(默认0.6)。

返回:

  • 元组(start_point, end_point),其中:

    • start_point:匹配的左上角坐标。

    • end_point:匹配的右下角坐标。

  • 若未找到匹配,返回((0, 0), (0, 0))。

相关代码片段:

def im_match(image, template, threshold=0.6):template_matcher = TemplateMatcher().match(image, template)multi_scale = MultiScale().match(image, template)print(f"match results >>> template_matcher: {template_matcher}; multi_scale: {multi_scale}")if template_matcher[2] >= threshold or multi_scale[2] >= threshold:if template_matcher[2] >= multi_scale[2]:points = template_matcher[:2]else:points = multi_scale[:2]return pointselse:return (0, 0), (0, 0)

draw_rectangle函数

1. 功能:

在图像上绘制矩形,标记匹配区域,并计算中心点。

2. 参数:

  • image_path (str):图像文件路径。

  • start_point (tuple):矩形的左上角坐标(x1, y1)。

  • end_point (tuple):矩形的右下角坐标(x2, y2)。

  • color (tuple):矩形颜色(BGR格式,默认绿色(0, 255, 0))。

  • thickness (int):矩形边框粗细(默认2)。

返回:

  • 元组(image, center_point),其中:

    • image:绘制矩形后的图像。

    • center_point:矩形中心点坐标(center_x, center_y)

相关代码片段:

def draw_rectangle(image_path, start_point, end_point, color=(0, 255, 0), thickness=2):image = cv2.imread(image_path)if image is None:raise ValueError(f"Unable to load image: {image_path}")cv2.rectangle(image, start_point, end_point, color, thickness)center_x = (start_point[0] + end_point[0]) // 2center_y = (start_point[1] + end_point[1]) // 2center_point = (center_x, center_y)return image, center_point

三、思路总结

提示: SIFTFeatureMatcher虽然定义了,但未集成到im_match函数中,SIFT特征匹配方法当前实现尚不成熟,需进一步优化。

通过TemplateMatcher、MultiScale和SIFTFeatureMatcher覆盖不同场景需求。im_match函数结合单尺度和多尺度匹配,确保鲁棒性,draw_rectangle提供可视化反馈。


http://www.dtcms.com/wzjs/485257.html

相关文章:

  • 企业站网站建设怎样优化网站关键词排名靠前
  • 做国际网站阿里巴巴搜狗站长工具综合查询
  • 入侵WordPress网站广东省疫情最新
  • 惠安县道安办网站建设seo 排名 优化
  • 网站页面html静态化是什么意思百度模拟点击软件判刑了
  • 展示型企业网站有哪些举例新平台推广赚钱
  • 做兼职什么网站靠谱免费优化
  • 百度关键词网站怎么做北京百度推广客服电话多少
  • 新钥匙石家庄网站建设seo是什么意思网络用语
  • 黄村做网站建设教程推广优化网站排名
  • wordpress4.7无法安装石景山区百科seo
  • 解析网站制作网站关键词排名优化电话
  • whois域名查询网站网站推广基本方法是
  • 网站内容seo网建公司
  • 贵阳手机网站制作如何做seo优化
  • 网站开发公司人员配置大专网络营销专业好不好
  • 展示型网站设计百度投放平台
  • 指纹锁在什么网站做宣传好免费b站推广网站链接
  • wap网站 微信登录欧洲站fba
  • 在合肥做网站多少钱全网推广平台
  • 赛扶做网站东莞网站建设排名
  • 网站建设制作 南京公司哪家好免费无代码开发平台
  • 重庆信息门户网站流量精灵
  • 网站开发多少钱太原关键词排名提升
  • 微信小程序网站建设小图标素材技术培训学校机构
  • nginx安装wordpress失败四川旅游seo整站优化
  • 中山小榄网站建设seo流量工具
  • 网上开店需要营业执照吗东莞seo外包公司哪家好
  • 手机网站头部代码网站seo诊断技巧
  • 陕西省建设工程质量监督站网站东莞百度快照优化排名