基于图像特征的模板匹配模板匹配为基于欧式距离的模板匹配opencv代码
时间: 2023-09-28 12:12:56 浏览: 100
opencv 模板匹配
4星 · 用户满意度95%
以下是基于图像特征的模板匹配和基于欧式距离的模板匹配的OpenCV代码:
基于图像特征的模板匹配:
```
import cv2
# 读取原始图像和模板
img = cv2.imread('image.jpg', 0)
template = cv2.imread('template.jpg', 0)
# 提取图像特征
sift = cv2.xfeatures2d.SIFT_create()
kp1, des1 = sift.detectAndCompute(img, None)
kp2, des2 = sift.detectAndCompute(template, None)
# 创建FLANN匹配器
FLANN_INDEX_KDTREE = 0
indexParams = dict(algorithm=FLANN_INDEX_KDTREE, trees=5)
searchParams = dict(checks=50)
flann = cv2.FlannBasedMatcher(indexParams, searchParams)
# 匹配特征
matches = flann.knnMatch(des1, des2, k=2)
# 提取良好的匹配
good_matches = []
for m, n in matches:
if m.distance < 0.7 * n.distance:
good_matches.append(m)
# 绘制匹配结果
img_matches = cv2.drawMatches(img, kp1, template, kp2, good_matches, None, flags=2)
cv2.imshow('matches', img_matches)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
基于欧式距离的模板匹配:
```
import cv2
# 读取原始图像和模板
img = cv2.imread('image.jpg', 0)
template = cv2.imread('template.jpg', 0)
# 获取模板大小
h, w = template.shape
# 模板匹配
res = cv2.matchTemplate(img, template, cv2.TM_SQDIFF)
# 获取最佳匹配位置
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
top_left = min_loc
bottom_right = (top_left[0] + w, top_left[1] + h)
# 绘制匹配结果
img_matches = cv2.rectangle(img, top_left, bottom_right, 255, 2)
cv2.imshow('matches', img_matches)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
需要注意的是,以上代码仅为示例代码,实际应用中需要根据具体情况进行调整和优化。
阅读全文