Update app.py
Browse files
app.py
CHANGED
@@ -218,9 +218,9 @@ def remove_bg(fl, count, mh, ms, md, lm):
|
|
218 |
# input trimap path
|
219 |
f"{str(count)}_trimask.png",
|
220 |
# output cutout path
|
221 |
-
|
222 |
|
223 |
-
return
|
224 |
else: # even: with the flash
|
225 |
fl_ = fl.split(".")[0] + "_.png"
|
226 |
cv2.imwrite(fl_, fr_diff.astype(np.uint8))
|
|
|
218 |
# input trimap path
|
219 |
f"{str(count)}_trimask.png",
|
220 |
# output cutout path
|
221 |
+
f"{str(count)}_cutout.png")
|
222 |
|
223 |
+
return f"{str(count)}_cutout.png"
|
224 |
else: # even: with the flash
|
225 |
fl_ = fl.split(".")[0] + "_.png"
|
226 |
cv2.imwrite(fl_, fr_diff.astype(np.uint8))
|