freealise commited on
Commit
ba907fd
·
verified ·
1 Parent(s): 94dd4f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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.float16)
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"