-
Notifications
You must be signed in to change notification settings - Fork 0
/
spot_diff.py
46 lines (32 loc) · 1.04 KB
/
spot_diff.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
import cv2
import time
from skimage.metrics import structural_similarity
from datetime import datetime
import beepy
def spot_diff(frame1, frame2):
frame1 = frame1[1]
frame2 = frame2[1]
g1 = cv2.cvtColor(frame1, cv2.COLOR_BGR2GRAY)
g2 = cv2.cvtColor(frame2, cv2.COLOR_BGR2GRAY)
g1 = cv2.blur(g1, (2,2))
g2 = cv2.blur(g2, (2,2))
(score, diff) = structural_similarity(g2, g1, full=True)
print("Image similarity", score)
diff = (diff * 255).astype("uint8")
thresh = cv2.threshold(diff, 100, 255, cv2.THRESH_BINARY_INV)[1]
contors = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)[0]
contors = [c for c in contors if cv2.contourArea(c) > 50]
if len(contors):
for c in contors:
x,y,w,h = cv2.boundingRect(c)
cv2.rectangle(frame1, (x,y), (x+w, y+h), (0,255,0), 2)
else:
print("nothing stolen")
return 0
cv2.imshow("diff", thresh)
cv2.imshow("win1", frame1)
beepy.beep(sound=4)
cv2.imwrite('stolen/{datetime.now().strftime("%y-%m-%d %H:%M:%S")}.jpg', frame1)
cv2.waitKey(0)
cv2.destroyAllWindows()
return 1