Spaces:
Runtime error
Runtime error
JinHyeong99
commited on
Commit
ยท
64b646f
1
Parent(s):
3af3698
app.py
CHANGED
@@ -45,7 +45,9 @@ def segment_image(image):
|
|
45 |
|
46 |
result_image = Image.fromarray(result_color.astype(np.uint8))
|
47 |
|
48 |
-
|
|
|
|
|
49 |
|
50 |
# Gradio ์ธํฐํ์ด์ค ์ ์
|
51 |
iface = gr.Interface(
|
|
|
45 |
|
46 |
result_image = Image.fromarray(result_color.astype(np.uint8))
|
47 |
|
48 |
+
combined_image = Image.blend(image.convert("RGBA"), result_image.convert("RGBA"), alpha=0.5)
|
49 |
+
|
50 |
+
return combined_image
|
51 |
|
52 |
# Gradio ์ธํฐํ์ด์ค ์ ์
|
53 |
iface = gr.Interface(
|