freealise commited on
Commit
18e385b
·
verified ·
1 Parent(s): a5fbd82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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,256]))
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