add name to output image
Browse files
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 = "
|
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 |
|