김동현 commited on
Commit
83a118e
·
1 Parent(s): 40d7ca5
Files changed (8) hide show
  1. app.py +124 -0
  2. labels.txt +18 -0
  3. person-1.jpg +0 -0
  4. person-2.jpg +0 -0
  5. person-3.jpg +0 -0
  6. person-4.jpg +0 -0
  7. person-5.jpg +0 -0
  8. requirements.txt +6 -0
app.py ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from matplotlib import gridspec
3
+ import matplotlib.pyplot as plt
4
+ import numpy as np
5
+ from PIL import Image
6
+ import torch
7
+ from transformers import AutoImageProcessor, AutoModelForSemanticSegmentation
8
+
9
+ MODEL_ID = "mattmdjaga/segformer_b2_clothes"
10
+ processor = AutoImageProcessor.from_pretrained(MODEL_ID) (
11
+ "mattmdjaga/segformer_b2_clothes"
12
+ )
13
+
14
+ model = AutoModelForSemanticSegmentation.from_pretrained(MODEL_ID) (
15
+ "mattmdjaga/segformer_b2_clothes"
16
+ )
17
+
18
+
19
+ def ade_palette():
20
+ """ADE20K palette that maps each class to RGB values."""
21
+ return [
22
+ [204, 87, 92],[112, 185, 212],[45, 189, 106],[234, 123, 67],[78, 56, 123],[210, 32, 89],
23
+ [90, 180, 56],[155, 102, 200],[33, 147, 176],[255, 183, 76],[67, 123, 89],[190, 60, 45],
24
+ [134, 112, 200],[56, 45, 189],[200, 56, 123],[87, 92, 204],[120, 56, 123],[45, 78, 123],
25
+ [156, 200, 56],[32, 90, 210],[56, 123, 67],[180, 56, 123],[123, 67, 45],[45, 134, 200],
26
+ [67, 56, 123],[78, 123, 67],[32, 210, 90],[45, 56, 189],[123, 56, 123],[56, 156, 200],
27
+ [189, 56, 45],[112, 200, 56],[56, 123, 45],[200, 32, 90],[123, 45, 78],[200, 156, 56],
28
+ [45, 67, 123],[56, 45, 78],[45, 56, 123],[123, 67, 56],[56, 78, 123],[210, 90, 32],
29
+ [123, 56, 189],[45, 200, 134],[67, 123, 56],[123, 45, 67],[90, 32, 210],[200, 45, 78],
30
+ [32, 210, 90],[45, 123, 67],[165, 42, 87],[72, 145, 167],[15, 158, 75],[209, 89, 40],
31
+ [32, 21, 121],[184, 20, 100],[56, 135, 15],[128, 92, 176],[1, 119, 140],[220, 151, 43],
32
+ [41, 97, 72],[148, 38, 27],[107, 86, 176],[21, 26, 136],[174, 27, 90],[91, 96, 204],
33
+ [108, 50, 107],[27, 45, 136],[168, 200, 52],[7, 102, 27],[42, 93, 56],[140, 52, 112],
34
+ [92, 107, 168],[17, 118, 176],[59, 50, 174],[206, 40, 143],[44, 19, 142],[23, 168, 75],
35
+ [54, 57, 189],[144, 21, 15],[15, 176, 35],[107, 19, 79],[204, 52, 114],[48, 173, 83],
36
+ [11, 120, 53],[206, 104, 28],[20, 31, 153],[27, 21, 93],[11, 206, 138],[112, 30, 83],
37
+ [68, 91, 152],[153, 13, 43],[25, 114, 54],[92, 27, 150],[108, 42, 59],[194, 77, 5],
38
+ [145, 48, 83],[7, 113, 19],[25, 92, 113],[60, 168, 79],[78, 33, 120],[89, 176, 205],
39
+ [27, 200, 94],[210, 67, 23],[123, 89, 189],[225, 56, 112],[75, 156, 45],[172, 104, 200],
40
+ [15, 170, 197],[240, 133, 65],[89, 156, 112],[214, 88, 57],[156, 134, 200],[78, 57, 189],
41
+ [200, 78, 123],[106, 120, 210],[145, 56, 112],[89, 120, 189],[185, 206, 56],[47, 99, 28],
42
+ [112, 189, 78],[200, 112, 89],[89, 145, 112],[78, 106, 189],[112, 78, 189],[156, 112, 78],
43
+ [28, 210, 99],[78, 89, 189],[189, 78, 57],[112, 200, 78],[189, 47, 78],[205, 112, 57],
44
+ [78, 145, 57],[200, 78, 112],[99, 89, 145],[200, 156, 78],[57, 78, 145],[78, 57, 99],
45
+ [57, 78, 145],[145, 112, 78],[78, 89, 145],[210, 99, 28],[145, 78, 189],[57, 200, 136],
46
+ [89, 156, 78],[145, 78, 99],[99, 28, 210],[189, 78, 47],[28, 210, 99],[78, 145, 57],
47
+ ]
48
+
49
+ labels_list = []
50
+ with open("labels.txt", "r", encoding="utf-8") as fp:
51
+ for line in fp:
52
+ labels_list.append(line.rstrip("\n"))
53
+
54
+ colormap = np.asarray(ade_palette(), dtype=np.uint8)
55
+
56
+ def label_to_color_image(label):
57
+ if label.ndim != 2:
58
+ raise ValueError("Expect 2-D input label")
59
+ if np.max(label) >= len(colormap):
60
+ raise ValueError("label value too large.")
61
+ return colormap[label]
62
+
63
+ def draw_plot(pred_img, seg_np):
64
+ fig = plt.figure(figsize=(20, 15))
65
+ grid_spec = gridspec.GridSpec(1, 2, width_ratios=[6, 1])
66
+
67
+ plt.subplot(grid_spec[0])
68
+ plt.imshow(pred_img)
69
+ plt.axis('off')
70
+
71
+ LABEL_NAMES = np.asarray(labels_list)
72
+ FULL_LABEL_MAP = np.arange(len(LABEL_NAMES)).reshape(len(LABEL_NAMES), 1)
73
+ FULL_COLOR_MAP = label_to_color_image(FULL_LABEL_MAP)
74
+
75
+ unique_labels = np.unique(seg_np.astype("uint8"))
76
+ ax = plt.subplot(grid_spec[1])
77
+ plt.imshow(FULL_COLOR_MAP[unique_labels].astype(np.uint8), interpolation="nearest")
78
+ ax.yaxis.tick_right()
79
+ plt.yticks(range(len(unique_labels)), LABEL_NAMES[unique_labels])
80
+ plt.xticks([], [])
81
+ ax.tick_params(width=0.0, labelsize=25)
82
+ return fig
83
+
84
+ def run_inference(input_img):
85
+ # input: numpy array from gradio -> PIL
86
+ img = Image.fromarray(input_img.astype(np.uint8)) if isinstance(input_img, np.ndarray) else input_img
87
+ if img.mode != "RGB":
88
+ img = img.convert("RGB")
89
+
90
+ inputs = processor(images=img, return_tensors="pt")
91
+ with torch.no_grad():
92
+ outputs = model(**inputs)
93
+ logits = outputs.logits # (1, C, h/4, w/4)
94
+
95
+ # resize to original
96
+ upsampled = torch.nn.functional.interpolate(
97
+ logits, size=img.size[::-1], mode="bilinear", align_corners=False
98
+ )
99
+ seg = upsampled.argmax(dim=1)[0].cpu().numpy().astype(np.uint8) # (H,W)
100
+
101
+ # colorize & overlay
102
+ color_seg = colormap[seg] # (H,W,3)
103
+ pred_img = (np.array(img) * 0.5 + color_seg * 0.5).astype(np.uint8)
104
+
105
+ fig = draw_plot(pred_img, seg)
106
+ return fig
107
+
108
+ demo = gr.Interface(
109
+ fn=run_inference,
110
+ inputs=gr.Image(type="numpy", label="Input Image"),
111
+ outputs=gr.Plot(label="Overlay + Legend"),
112
+ examples=[
113
+ "person-1.jpg",
114
+ "person-2.jpg",
115
+ "person-3.jpg",
116
+ "person-4.jpg",
117
+ "person-5.jpg"
118
+ ],
119
+ flagging_mode="never",
120
+ cache_examples=False,
121
+ )
122
+
123
+ if __name__ == "__main__":
124
+ demo.launch()
labels.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Background
2
+ Hat
3
+ Hair
4
+ Sunglasses
5
+ Upper-clothes
6
+ Skirt
7
+ Pants
8
+ Dress
9
+ Belt
10
+ Left-shoe
11
+ Right-shoe
12
+ Face
13
+ Left-leg
14
+ Right-leg
15
+ Left-arm
16
+ Right-arm
17
+ Bag
18
+ Scarf
person-1.jpg ADDED
person-2.jpg ADDED
person-3.jpg ADDED
person-4.jpg ADDED
person-5.jpg ADDED
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ torch
2
+ transformers>=4.41.0
3
+ gradio>=4.0.0
4
+ Pillow
5
+ numpy
6
+ matplotlib