This repository was archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdetection.py
More file actions
43 lines (33 loc) · 1.3 KB
/
Copy pathdetection.py
File metadata and controls
43 lines (33 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding:utf-8 -*-
__author__ = 'Microcosm'
import cv2
import numpy as np
from matplotlib import pyplot as plt
img = cv2.imread("test/t1.jpeg", 0)
img2 = img.copy()
template = cv2.imread("res/buster.png", 0)
w, h = template.shape[::-1]
# 6 中匹配效果对比算法
methods = ['cv2.TM_CCOEFF', 'cv2.TM_CCOEFF_NORMED', 'cv2.TM_CCORR',
'cv2.TM_CCORR_NORMED', 'cv2.TM_SQDIFF', 'cv2.TM_SQDIFF_NORMED']
for meth in methods:
img = img2.copy()
method = eval(meth)
res = cv2.matchTemplate(img, template, method)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
if method in [cv2.TM_SQDIFF, cv2.TM_SQDIFF_NORMED]:
top_left = min_loc
else:
top_left = max_loc
bottom_right = (top_left[0] + w, top_left[1] + h)
cv2.rectangle(img, top_left, bottom_right, 255, 2)
print(meth)
plt.subplot(221), plt.imshow(img2, cmap="gray")
plt.title('Original Image'), plt.xticks([]), plt.yticks([])
plt.subplot(222), plt.imshow(template, cmap="gray")
plt.title('template Image'), plt.xticks([]), plt.yticks([])
plt.subplot(223), plt.imshow(res, cmap="gray")
plt.title('Matching Result'), plt.xticks([]), plt.yticks([])
plt.subplot(224), plt.imshow(img, cmap="gray")
plt.title('Detected Point'), plt.xticks([]), plt.yticks([])
plt.show()