-
Notifications
You must be signed in to change notification settings - Fork 9
/
find_banners.py
193 lines (150 loc) · 6.03 KB
/
find_banners.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import sys
import numpy as np
import cv2
import time
class Timer:
def __enter__(self):
self.start = time.clock()
return self
def __exit__(self, *args):
self.end = time.clock()
self.interval = self.end - self.start
FLANN_INDEX_KDTREE = 1 # bug: flann enums are missing
def create_blank(width, height, rgb_color=(0, 0, 0)):
"""Create new image(numpy array) filled with certain color in RGB"""
# Create black blank image
image = np.zeros((height, width, 3), np.uint8)
# Since OpenCV uses BGR, convert the color first
color = tuple(reversed(rgb_color))
# Fill image with color
image[:] = color
return image
def init_feature():
detector = cv2.SIFT(1000)
# norm = cv2.NORM_L2
# flann_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 3)
# matcher = cv2.FlannBasedMatcher(flann_params, {})
matcher = cv2.BFMatcher()
return detector, matcher
def filter_matches(kp1, kp2, matches, ratio = 0.65):
mkp1, mkp2 = [], []
for m in matches:
if len(m) == 2 and m[0].distance < m[1].distance * ratio:
m = m[0]
mkp1.append( kp1[m.queryIdx] )
mkp2.append( kp2[m.trainIdx] )
p1 = np.float32([kp.pt for kp in mkp1])
p2 = np.float32([kp.pt for kp in mkp2])
kp_pairs = zip(mkp1, mkp2)
return p1, p2, kp_pairs
def explore_match(win, img1, img2, kp_pairs, status = None, H = None):
h1, w1 = img1.shape[:2]
h2, w2 = img2.shape[:2]
vis = img2
if H is not None:
corners = np.float32([[0, 0], [w1, 0], [w1, h1], [0, h1]])
corners = np.int32( cv2.perspectiveTransform(corners.reshape(1, -1, 2), H).reshape(-1, 2))
# cv2.polylines(vis, [corners], True, (255, 255, 255))
# cv2.fillPoly(vis, [corners], (255, 255, 255))
mask = np.zeros(vis.shape, dtype=np.uint8)
roi_corners = np.array([[(corners[0][0],corners[0][1]),
(corners[1][0],corners[1][1]),
(corners[2][0],corners[2][1]),
(corners[3][0], corners[3][1])]], dtype=np.int32)
white = (255, 255, 255)
cv2.fillPoly(mask, roi_corners, white)
# apply the mask
masked_image = cv2.bitwise_and(vis, mask)
# blurred_image = cv2.blur(vis, (15, 15), 0)
blurred_image = cv2.boxFilter(vis, -1, (27, 27))
vis = vis + (cv2.bitwise_and((blurred_image-vis), mask))
# if status is None:
# status = np.ones(len(kp_pairs), np.bool_)
# p2 = np.int32([kpp[1].pt for kpp in kp_pairs])
# green = (0, 255, 0)
# red = (0, 0, 255)
# white = (255, 255, 255)
# kp_color = (51, 103, 236)
# for (x, y), inlier in zip(p2, status):
# if inlier:
# col = green
# cv2.circle(vis, (x, y), 2, col, -1)
# view params
# width, height = 1280, 800
# x_offset = 260
# y_offset = 500
# l_img = create_blank(width, height, rgb_color=(0,0,0))
# vis = np.append(vis, vis, axis=1)
# vis = cv2.resize(vis, (0,0), fx=0.6, fy=0.6)
# l_img[y_offset:y_offset+vis.shape[0], x_offset:x_offset+vis.shape[1]] = vis
# cv2.namedWindow(win, cv2.WND_PROP_FULLSCREEN)
# cv2.setWindowProperty(win, cv2.WND_PROP_AUTOSIZE, cv2.cv.CV_WINDOW_AUTOSIZE)
# cv2.imshow(win, l_img)
def main():
# imgs = [cv2.imread("images/ps1.jpg", 0),
# cv2.imread("images/linodeb.jpg", 0),
# #cv2.imread("images/google1.png", 0),
# #cv2.imread("images/hersheys1.png", 0),
# cv2.imread("images/luckycharm.jpg", 0),
# cv2.imread("images/starbucks1.jpg", 0),
# cv2.imread("images/mcdonalds.png", 0),
# cv2.imread("images/drpepper.png", 0),
# cv2.imread("images/spotify.jpg", 0),
# cv2.imread("images/pennapps.png", 0)]
# detector, matcher = init_feature()
# seeds = []
# for i in imgs:
# k, d = detector.detectAndCompute(i, None)
# seeds.append((k,d))
# def find_match(kp, desc):
# max_matches = 0
# match_img = imgs[0]
# match_desc= seeds[0]
# for i, seed in enumerate(seeds):
# raw_matches = matcher.knnMatch(desc, trainDescriptors = seed[1], k = 2)
# p1, p2, kp_pairs = filter_matches(kp, seed[0], raw_matches)
# if len(p1) > max_matches:
# max_matches = len(p1)
# match_desc = seed
# match_img = imgs[i]
# return (match_desc, match_img)
# def match_and_draw(win, img1, img2, kp1, kp2, desc1, desc2):
# raw_matches = matcher.knnMatch(desc1, trainDescriptors = desc2, k = 2)
# p1, p2, kp_pairs = filter_matches(kp1, kp2, raw_matches)
# if len(p1) >= 4:
# H, status = cv2.findHomography(p1, p2, cv2.RANSAC, 5.0)
# else:
# H, status = None, None
# vis = explore_match(win, img1, img2, kp_pairs, status, H)
cap = cv2.VideoCapture('soccer_videos/clip.mp4')
# cap.set(3, 320)
# cap.set(4, 240)
while(cap.isOpened()):
ret, frame = cap.read()
#cv2.imshow('frame', frame)
#gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.imshow('frame', frame)
if cv2.waitKey(30) & 0xFF == ord('q'):
break
# while True:
# ret, frame = cap.read()
# # gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# # if count % 2 == 0 :
# # kp2, desc2 = detector.detectAndCompute(frame, None)
# # match_and_draw('find_obj', img1, frame, kp1, kp2, desc1, desc2)
# # else:
# # cv2.imshow('find_obj', frame)
# # count += 1
# with Timer() as t:
# if count % 8 == 0:
# kp2, desc2 = detector.detectAndCompute(frame, None)
# (kp1, desc1), img1 = find_match(kp2, desc2)
# match_and_draw('Brand Killer', img1, frame, kp1, kp2, desc1, desc2)
# count += 1
# print('took %.03f sec.' % t.interval)
# if cv2.waitKey(1) & 0xFF == ord('q'):
# break
cap.release()
cv2.destroyAllWindows()
if __name__ == '__main__':
main()