forked from ryoppippi/Gasyori100knock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
answer_55.py
50 lines (38 loc) · 1.1 KB
/
answer_55.py
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
43
44
45
46
47
48
49
50
import cv2
import numpy as np
import matplotlib.pyplot as plt
# template matching
def Template_matching(img, template):
# get original image shape
H, W, C = img.shape
# get template image shape
Ht, Wt, Ct = template.shape
# Templete matching
# prepare x, y index
i, j = -1, -1
# prepare evaluate value
v = 255 * H * W * C
for y in range(H - Ht):
for x in range(W - Wt):
# get SAD value
_v = np.sum(np.abs(img[y : y + Ht, x : x + Wt] - template))
# if SAD is min
if _v < v:
v = _v
i, j = x, y
out = img.copy()
# draw rectangle
cv2.rectangle(out, pt1=(i, j), pt2=(i+Wt, j+Ht), color=(0,0,255), thickness=1)
out = out.astype(np.uint8)
return out
# Read image
img = cv2.imread("imori.jpg").astype(np.float32)
# Read templete image
template = cv2.imread("imori_part.jpg").astype(np.float32)
# Template matching
out = Template_matching(img, template)
# Save result
cv2.imwrite("out.jpg", out)
cv2.imshow("result", out)
cv2.waitKey(0)
cv2.destroyAllWindows()