Update app.py
Browse files
app.py
CHANGED
@@ -155,8 +155,8 @@ def remove_bg(fl):
|
|
155 |
bg_diff = (bg-bg_gray).astype(np.int16)
|
156 |
frame_c = (frame.astype(np.int16)-bg_diff).astype(np.uint8)
|
157 |
|
158 |
-
#remove regions of low saturation (get scene without shadow)
|
159 |
-
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,
|
160 |
frame[m>0] = (127,127,127)
|
161 |
frame = cv2.medianBlur(frame, b)
|
162 |
|
|
|
155 |
bg_diff = (bg-bg_gray).astype(np.int16)
|
156 |
frame_c = (frame.astype(np.int16)-bg_diff).astype(np.uint8)
|
157 |
|
158 |
+
#remove regions of low saturation and lightness (get scene without shadow)
|
159 |
+
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,127]))
|
160 |
frame[m>0] = (127,127,127)
|
161 |
frame = cv2.medianBlur(frame, b)
|
162 |
|