Update app.py
Browse files
app.py
CHANGED
@@ -156,10 +156,18 @@ def remove_bg(fl):
|
|
156 |
bg_diff = (bg-bg_gray).astype(np.int16)
|
157 |
frame_c = (frame.astype(np.int16)-bg_diff).astype(np.uint8)
|
158 |
|
159 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#remove regions of low saturation and lightness (get scene without shadow)
|
161 |
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,64]))
|
162 |
-
frame[m>0] = (127,127,127)
|
163 |
frame = cv2.medianBlur(frame, b)
|
164 |
|
165 |
|
|
|
156 |
bg_diff = (bg-bg_gray).astype(np.int16)
|
157 |
frame_c = (frame.astype(np.int16)-bg_diff).astype(np.uint8)
|
158 |
|
159 |
+
|
160 |
+
blur_s = []
|
161 |
+
edges = cv2.Laplacian(cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY), cv2.CV_64F)
|
162 |
+
for i in range(0, frame.shape[0]):
|
163 |
+
blur_s.append([])
|
164 |
+
for j in range(0, frame.shape[1]):
|
165 |
+
d = edges[i-2:i+2,j-2:j+2].var().astype(np.uint8)
|
166 |
+
blur_s[i].append(d)
|
167 |
+
|
168 |
#remove regions of low saturation and lightness (get scene without shadow)
|
169 |
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,64]))
|
170 |
+
frame[m>0 and blur_s<255] = (127,127,127)
|
171 |
frame = cv2.medianBlur(frame, b)
|
172 |
|
173 |
|