-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_img.py
29 lines (24 loc) · 899 Bytes
/
find_img.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
import cv2
import numpy as np
from matplotlib import pyplot as plt
import sys
if(len(sys.argv) < 2):
print('Missing input file...')
exit(-1)
else:
fname = sys.argv[1]
# '/home/ignacio/Nextcloud/Android-Celus/MotoG4/x_filtered.png'
# '/home/ignacio/Nextcloud/Android-Celus/MotoG4/launch_icon.png'
#screencap = '/home/ignacio/Downloads/KINGSTON/Android/screencap.png'
screencap = './downloads/screencap.png'
img = cv2.imread(screencap, cv2.IMREAD_GRAYSCALE)
template = cv2.imread(fname, cv2.IMREAD_GRAYSCALE)
# Better possible match, siendo:
# max_val el valor de "threshold" que dió y max_loc la pos en X,Y donde ocurrió
res = cv2.matchTemplate(img,template,cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
if max_val >= 0.9:
print(str(max_loc[0]) + " " + str(max_loc[1]))
else:
# Couldn't not find image with a certainty level > 0,9
print("NoPosition")