Update app.py
Browse files
app.py
CHANGED
@@ -216,8 +216,10 @@ def remove_bg(fl, count, mh, ms, md, lm):
|
|
216 |
cutout(fl, f"{str(count)}_trimask.png", f"{str(count)}_cutout.png")
|
217 |
|
218 |
a_map = cv2.imread(f"{str(count)}_cutout.png", cv2.IMREAD_UNCHANGED).astype(np.uint8)
|
219 |
-
a_map[:,:,3] = ((255 - a_map[:,:,3]) / 255).astype(np.
|
220 |
-
fr[a_map[:,:,3]>0] = (fr * a_map[:,:,3] * 15 + 240).astype(np.uint8)
|
|
|
|
|
221 |
|
222 |
cv2.imwrite(fl, fr)
|
223 |
return fl #f"{str(count)}_cutout.png"
|
|
|
216 |
cutout(fl, f"{str(count)}_trimask.png", f"{str(count)}_cutout.png")
|
217 |
|
218 |
a_map = cv2.imread(f"{str(count)}_cutout.png", cv2.IMREAD_UNCHANGED).astype(np.uint8)
|
219 |
+
a_map[:,:,3] = ((255 - a_map[:,:,3]) / 255).astype(np.uint8)
|
220 |
+
fr[:,:,0][a_map[:,:,3]>0] = (fr[:,:,0] * a_map[:,:,3] * 15 + 240).astype(np.uint8)
|
221 |
+
fr[:,:,1][a_map[:,:,3]>0] = (fr[:,:,1] * a_map[:,:,3] * 15 + 240).astype(np.uint8)
|
222 |
+
fr[:,:,2][a_map[:,:,3]>0] = (fr[:,:,2] * a_map[:,:,3] * 15 + 240).astype(np.uint8)
|
223 |
|
224 |
cv2.imwrite(fl, fr)
|
225 |
return fl #f"{str(count)}_cutout.png"
|