Update app.py
Browse files
app.py
CHANGED
@@ -175,9 +175,9 @@ def infer(url_in,interpolation,fps_output,resize_n,winsize,o_flow):
|
|
175 |
mask = cv2.inRange(rgb, lo, hi)
|
176 |
#m = cv2.bitwise_and(mask_f, mask)
|
177 |
#diff = np.abs(rgba - bg)
|
178 |
-
|
179 |
|
180 |
-
cv2.imwrite(f"opticalfb{i}.png",
|
181 |
depth_frames.append(f"opticalfb{i}.png")
|
182 |
|
183 |
i+=1
|
|
|
175 |
mask = cv2.inRange(rgb, lo, hi)
|
176 |
#m = cv2.bitwise_and(mask_f, mask)
|
177 |
#diff = np.abs(rgba - bg)
|
178 |
+
fr2[mask>0] = (255,255,255)
|
179 |
|
180 |
+
cv2.imwrite(f"opticalfb{i}.png", fr2)
|
181 |
depth_frames.append(f"opticalfb{i}.png")
|
182 |
|
183 |
i+=1
|