JinHyeong99 commited on
Commit
3af3698
ยท
1 Parent(s): cd60cf8
Files changed (1) hide show
  1. app.py +26 -2
app.py CHANGED
@@ -8,6 +8,28 @@ import numpy as np
8
  feature_extractor = SegformerFeatureExtractor.from_pretrained("nvidia/segformer-b0-finetuned-cityscapes-512-1024")
9
  model = SegformerForSemanticSegmentation.from_pretrained("nvidia/segformer-b0-finetuned-cityscapes-512-1024")
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  def segment_image(image):
12
  # ์ด๋ฏธ์ง€๋ฅผ ์ฒ˜๋ฆฌํ•˜๊ณ  ๋ชจ๋ธ์— ์ „๋‹ฌํ•˜๊ธฐ
13
  inputs = feature_extractor(images=image, return_tensors="pt")
@@ -18,9 +40,11 @@ def segment_image(image):
18
  result = logits.argmax(dim=1)[0]
19
  result = result.cpu().detach().numpy()
20
 
21
- result_image = Image.fromarray(result.astype(np.uint8), mode="P").convert("RGB")
 
 
 
22
 
23
- # ๊ฒฐ๊ณผ ๋ฐฐ์—ด ๋ฐ˜ํ™˜
24
  return result_image
25
 
26
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค ์ •์˜
 
8
  feature_extractor = SegformerFeatureExtractor.from_pretrained("nvidia/segformer-b0-finetuned-cityscapes-512-1024")
9
  model = SegformerForSemanticSegmentation.from_pretrained("nvidia/segformer-b0-finetuned-cityscapes-512-1024")
10
 
11
+ colors = np.array([
12
+ [255, 0, 0], # ๋นจ๊ฐ•
13
+ [255, 228, 0], # ๋…ธ๋ž‘
14
+ [171, 242, 0], # ์—ฐ๋‘
15
+ [0, 216, 255], # ํ•˜๋Š˜
16
+ [0, 0, 255], # ํŒŒ๋ž‘
17
+ [255, 0, 221], # ํ•‘ํฌ
18
+ [116, 116, 116], # ํšŒ์ƒ‰
19
+ [95, 0, 255], # ๋ณด๋ผ
20
+ [255, 94, 0], # ์ฃผํ™ฉ
21
+ [71, 200, 62], # ์ดˆ๋ก
22
+ [153, 0, 76], # ๋งˆ์  ํƒ€
23
+ [67, 116, 217], # ์• ๋งคํ•œํ•˜๋Š˜+ํŒŒ๋ž‘
24
+ [153, 112, 0], # ๊ฒจ์ž
25
+ [87, 129, 0], # ๋…น์ƒ‰
26
+ [255, 169, 169], # ๋ถ„ํ™๋ถ„ํ™
27
+ [35, 30, 183], # ์–ด๋‘์šด ํŒŒ๋ž‘
28
+ [225, 186, 133], # ์‚ด์ƒ‰
29
+ [206, 251, 201], # ์—ฐํ•œ์ดˆ๋ก
30
+ [165, 102, 255] # ์• ๋งคํ•œ๋ณด๋ผ
31
+ ], dtype=np.uint8)
32
+
33
  def segment_image(image):
34
  # ์ด๋ฏธ์ง€๋ฅผ ์ฒ˜๋ฆฌํ•˜๊ณ  ๋ชจ๋ธ์— ์ „๋‹ฌํ•˜๊ธฐ
35
  inputs = feature_extractor(images=image, return_tensors="pt")
 
40
  result = logits.argmax(dim=1)[0]
41
  result = result.cpu().detach().numpy()
42
 
43
+ # ์ƒ‰์ƒ ํŒ”๋ ˆํŠธ ์ ์šฉ
44
+ result_color = colors[result]
45
+
46
+ result_image = Image.fromarray(result_color.astype(np.uint8))
47
 
 
48
  return result_image
49
 
50
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค ์ •์˜