Spaces:
Runtime error
Runtime error
JinHyeong99
commited on
Commit
·
09dbfd1
1
Parent(s):
64b646f
app.py
CHANGED
@@ -43,8 +43,13 @@ def segment_image(image):
|
|
43 |
# 색상 팔레트 적용
|
44 |
result_color = colors[result]
|
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
|
|
|
43 |
# 색상 팔레트 적용
|
44 |
result_color = colors[result]
|
45 |
|
46 |
+
# NumPy 배열을 PIL 이미지로 변환
|
47 |
result_image = Image.fromarray(result_color.astype(np.uint8))
|
48 |
|
49 |
+
# 원본 이미지와 추론 결과 이미지의 크기 일치시키기
|
50 |
+
result_image = result_image.resize(image.size, Image.NEAREST)
|
51 |
+
|
52 |
+
# 원본 이미지와 추론 결과 이미지 결합
|
53 |
combined_image = Image.blend(image.convert("RGBA"), result_image.convert("RGBA"), alpha=0.5)
|
54 |
|
55 |
return combined_image
|