rdjarbeng commited on
Commit
3d3b656
·
1 Parent(s): 4caae8a

add name to output image

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ def remove_background(input_image, bg_color, model_name, alpha_matting, post_pro
43
  logging.info("Converted to RGB mode")
44
 
45
  # Save the output image to a temporary file
46
- output_path = "output_image.png"
47
  output_image.save(output_path)
48
  logging.info(f"Saved output image {output_path}")
49
 
 
43
  logging.info("Converted to RGB mode")
44
 
45
  # Save the output image to a temporary file
46
+ output_path = "output_image_remove_background_rdjarbeng.png"
47
  output_image.save(output_path)
48
  logging.info(f"Saved output image {output_path}")
49