Update app.py
Browse files
app.py
CHANGED
@@ -168,8 +168,8 @@ def remove_bg(fl, s, l, v):
|
|
168 |
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,s,l]))
|
169 |
mask = cv2.inRange(blur_s, 0, v)
|
170 |
masks = np.bitwise_and(m, mask)
|
171 |
-
|
172 |
-
frame = cv2.medianBlur(frame, b)
|
173 |
|
174 |
|
175 |
m_ = frame_.reshape((-1,3))
|
@@ -193,11 +193,13 @@ def remove_bg(fl, s, l, v):
|
|
193 |
# 255 << 8 tells to fill with the value 255)
|
194 |
mask = mask[1:mask.shape[0]-1, 1:mask.shape[1]-1]
|
195 |
frame_[mask>0] = (127,127,127)
|
196 |
-
m_ = cv2.inRange(frame_, np.array([
|
197 |
frame_[m_>0] = (127,127,127)
|
|
|
|
|
198 |
|
199 |
|
200 |
-
cv2.imwrite(fl,
|
201 |
return fl
|
202 |
|
203 |
def logscale(linear):
|
|
|
168 |
m = cv2.inRange(cv2.cvtColor(frame_c, cv2.COLOR_RGB2HSV), np.array([0,0,0]), np.array([180,s,l]))
|
169 |
mask = cv2.inRange(blur_s, 0, v)
|
170 |
masks = np.bitwise_and(m, mask)
|
171 |
+
frame_[masks==0] = (0,0,0)
|
172 |
+
#frame = cv2.medianBlur(frame, b)
|
173 |
|
174 |
|
175 |
m_ = frame_.reshape((-1,3))
|
|
|
193 |
# 255 << 8 tells to fill with the value 255)
|
194 |
mask = mask[1:mask.shape[0]-1, 1:mask.shape[1]-1]
|
195 |
frame_[mask>0] = (127,127,127)
|
196 |
+
m_ = cv2.inRange(frame_, np.array([1,1,1]), np.array([127,127,127]))
|
197 |
frame_[m_>0] = (127,127,127)
|
198 |
+
|
199 |
+
|
200 |
|
201 |
|
202 |
+
cv2.imwrite(fl, frame_)
|
203 |
return fl
|
204 |
|
205 |
def logscale(linear):
|