kdw7921 commited on
Commit
96bfb2a
1 Parent(s): 3af03d5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +128 -0
app.py ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from matplotlib import gridspec
4
+ import matplotlib.pyplot as plt
5
+ import numpy as np
6
+ from PIL import Image
7
+ import tensorflow as tf
8
+ from transformers import SegformerFeatureExtractor, TFSegformerForSemanticSegmentation
9
+
10
+ feature_extractor = SegformerFeatureExtractor.from_pretrained(
11
+ "nickmuchi/segformer-b4-finetuned-segments-sidewalk"
12
+ )
13
+ model = TFSegformerForSemanticSegmentation.from_pretrained(
14
+ "nickmuchi/segformer-b4-finetuned-segments-sidewalk"
15
+ )
16
+
17
+ def ade_palette():
18
+ """ADE20K palette that maps each class to RGB values."""
19
+ return [
20
+ [204, 87, 92],
21
+ [112, 185, 212],
22
+ [45, 189, 106],
23
+ [234, 123, 67],
24
+ [78, 56, 123],
25
+ [210, 32, 89],
26
+ [90, 180, 56],
27
+ [155, 102, 200],
28
+ [33, 147, 176],
29
+ [255, 183, 76],
30
+ [67, 123, 89],
31
+ [190, 60, 45],
32
+ [134, 112, 200],
33
+ [56, 45, 189],
34
+ [200, 56, 123],
35
+ [87, 92, 204],
36
+ [120, 56, 123],
37
+ [45, 78, 123],
38
+ [156, 200, 56],
39
+ [32, 90, 210],
40
+ [56, 123, 67],
41
+ [180, 56, 123],
42
+ [123, 67, 45],
43
+ [45, 134, 200],
44
+ [67, 56, 123],
45
+ [78, 123, 67],
46
+ [32, 210, 90],
47
+ [45, 56, 189],
48
+ [123, 56, 123],
49
+ [56, 156, 200],
50
+ [189, 56, 45],
51
+ [112, 200, 56],
52
+ [56, 123, 45],
53
+ [200, 32, 90],
54
+ [123, 45, 78]
55
+ ]
56
+
57
+ labels_list = []
58
+
59
+ with open(r'labels.txt', 'r') as fp:
60
+ for line in fp:
61
+ labels_list.append(line[:-1])
62
+
63
+ colormap = np.asarray(ade_palette())
64
+
65
+ def label_to_color_image(label):
66
+ if label.ndim != 2:
67
+ raise ValueError("Expect 2-D input label")
68
+
69
+ if np.max(label) >= len(colormap):
70
+ raise ValueError("label value too large.")
71
+ return colormap[label]
72
+
73
+ def draw_plot(pred_img, seg):
74
+ fig = plt.figure(figsize=(20, 15))
75
+
76
+ grid_spec = gridspec.GridSpec(1, 2, width_ratios=[6, 1])
77
+
78
+ plt.subplot(grid_spec[0])
79
+ plt.imshow(pred_img)
80
+ plt.axis('off')
81
+ LABEL_NAMES = np.asarray(labels_list)
82
+ FULL_LABEL_MAP = np.arange(len(LABEL_NAMES)).reshape(len(LABEL_NAMES), 1)
83
+ FULL_COLOR_MAP = label_to_color_image(FULL_LABEL_MAP)
84
+
85
+ unique_labels = np.unique(seg.numpy().astype("uint8"))
86
+ ax = plt.subplot(grid_spec[1])
87
+ plt.imshow(FULL_COLOR_MAP[unique_labels].astype(np.uint8), interpolation="nearest")
88
+ ax.yaxis.tick_right()
89
+ plt.yticks(range(len(unique_labels)), LABEL_NAMES[unique_labels])
90
+ plt.xticks([], [])
91
+ ax.tick_params(width=0.0, labelsize=25)
92
+ return fig
93
+
94
+ def sepia(input_img):
95
+ input_img = Image.fromarray(input_img)
96
+
97
+ inputs = feature_extractor(images=input_img, return_tensors="tf")
98
+ outputs = model(**inputs)
99
+ logits = outputs.logits
100
+
101
+ logits = tf.transpose(logits, [0, 2, 3, 1])
102
+ logits = tf.image.resize(
103
+ logits, input_img.size[::-1]
104
+ ) # We reverse the shape of `image` because `image.size` returns width and height.
105
+ seg = tf.math.argmax(logits, axis=-1)[0]
106
+
107
+ color_seg = np.zeros(
108
+ (seg.shape[0], seg.shape[1], 3), dtype=np.uint8
109
+ ) # height, width, 3
110
+ for label, color in enumerate(colormap):
111
+ color_seg[seg.numpy() == label, :] = color
112
+
113
+ # Show image + mask
114
+ pred_img = np.array(input_img) * 0.5 + color_seg * 0.5
115
+ pred_img = pred_img.astype(np.uint8)
116
+
117
+ fig = draw_plot(pred_img, seg)
118
+ return fig
119
+
120
+ demo = gr.Interface(fn=sepia,
121
+ inputs=gr.Image(shape=(400, 600)),
122
+ outputs=['plot'],
123
+ examples=["sidewalk1.jpg", "sidewalk2.jpg", "sidewalk3.jpg", "sidewalk4.jpg"],
124
+ allow_flagging='never')
125
+
126
+ TF_ENABLE_ONEDNN_OPTS=0
127
+
128
+ demo.launch()