freealise commited on
Commit
7bf40a3
·
verified ·
1 Parent(s): 1b67f11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -167,7 +167,8 @@ def remove_bg(fl):
167
  #remove regions of low saturation and lightness (get scene without shadow)
168
  m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,64]))
169
  mask = cv2.inRange(blur_s, 0, 127)
170
- frame[all([m>0, mask>0])] = (127,127,127)
 
171
  frame = cv2.medianBlur(frame, b)
172
 
173
 
 
167
  #remove regions of low saturation and lightness (get scene without shadow)
168
  m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,32,64]))
169
  mask = cv2.inRange(blur_s, 0, 127)
170
+ masks = np.bitwise_and(m, mask)
171
+ frame[masks>0] = (127,127,127)
172
  frame = cv2.medianBlur(frame, b)
173
 
174