-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathplots.py
More file actions
219 lines (193 loc) · 7.65 KB
/
plots.py
File metadata and controls
219 lines (193 loc) · 7.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
import numpy as np
from bokeh import io, models, palettes, plotting
from bokeh.layouts import column, row
# @profile
def plotresults(cam, im, P, S, B, bbox):
"""Generates interactive Bokeh plots for image analysis, including image with bounding box, 3D position, distance,
and speed.
"""
io.reset_output()
io.output_file("bokeh plots.html", title="bokeh plots")
h, w = im.shape
n = P.shape[2] # number of images
xn = list(range(n))
# colors = bokeh_colors(n)
colorbyframe = True
colors = [palettes.Viridis256[i] for i in np.linspace(0, 255, n, dtype=int)]
# Setup tools
hoverImage = models.HoverTool(tooltips=[("(x, y)", "$x{1.11}, $y{1.11}")], point_policy="follow_mouse")
# Plot image
a = plotting.figure(
x_range=(0, w),
y_range=(h, 0),
plot_width=round(600 * w / h),
plot_height=600,
x_axis_label=f"pixel (1 - {str(w)})",
y_axis_label=f"pixel (1 - {str(h)})",
title=cam["filename"],
tools="box_zoom,pan,save,reset,wheel_zoom",
active_scroll="wheel_zoom",
active_inspect=None,
)
a.add_tools(hoverImage)
a.image(image=[np.flip(im, 0)], x=0, y=h, dw=w, dh=h, palette=palettes.Greys256)
a.quad(top=[h], bottom=[0], left=[0], right=[w], alpha=0) # clear rectangle hack for tooltip image x,y
# Plog bounding box
a.quad(top=bbox[3], bottom=bbox[2], left=bbox[0], right=bbox[1], color=colors[1], line_width=2, alpha=0.3)
# Plot license plate outline
a.patch(P[0, 0:4, 0], P[1, 0:4, 0], alpha=0.3, line_width=4)
# Plot points
if colorbyframe:
# i = ~np.isnan(P[0].ravel())
# c = P[4].ravel()[i].astype(int)
# fc = [colors[i] for i in c]
# a.scatter(P[0].ravel()[i], P[1].ravel()[i], size=4, fill_color=fc, line_color=None)
# a.scatter(P[2].ravel()[i], P[3].ravel()[i], size=9, fill_color=fc, fill_alpha=0.3, line_color=None)
for i in range(n - 1): # list((0, n - 1)): # plot first and last
# for i in range(n): # plot all
a.circle(
P[0, :, i],
P[1, :, i],
color=colors[i],
legend=f"image {str(i)}",
line_width=1,
)
a.circle(P[2, :, i], P[3, :, i], color=colors[i], size=10, alpha=0.6)
else:
a.circle(P[0].ravel(), P[1].ravel(), color=colors[0], legend="Points", line_width=2)
a.circle(P[2].ravel(), P[3].ravel(), color=colors[1], legend="Reprojections", size=10, alpha=0.6)
# Plot 2 - 3d
x, y, z = np.split(B[:, :3], 3, axis=1)
b = plotting.figure(
plot_width=350,
plot_height=300,
x_axis_label="Y (m)",
y_axis_label="X (m)",
title="Position",
tools="save,reset,hover",
active_inspect="hover",
)
# Plot 3 - distance
c = plotting.figure(
x_range=(0, n),
y_range=(0, round(S[1:, 7].max())),
plot_width=350,
plot_height=300,
x_axis_label="image",
y_axis_label="distance (m)",
title=f"Distance = {S[-1, 7]:.2f}m in {S[-1, 5] - S[0, 5]:.3f}s",
tools="save,reset,hover",
active_inspect="hover",
)
# Plot 4 - speed
d = plotting.figure(
x_range=(0, n),
y_range=(0, S[1:, 8].max() + 1),
plot_width=350,
plot_height=300,
x_axis_label="image",
y_axis_label="speed (km/h)",
title=f"Speed = {S[1:, 8].mean():.2f} +/- {S[1:, 8].std():.2f} km/h",
tools="save,reset,hover",
active_inspect="hover",
)
# Circles plots 2-4
b.circle(0, 0, color=colors[-1], line_width=15)
if colorbyframe:
b.scatter(x.ravel(), z.ravel(), fill_color=colors, line_color=colors, size=10)
c.scatter(xn[1:], S[1:, 7], fill_color=colors[1:], line_color=colors[1:], size=10)
d.scatter(xn[1:], S[1:, 8], fill_color=colors[1:], line_color=colors[1:], size=10)
else:
b.circle(x.ravel(), z.ravel(), color=colors[0], line_width=2)
c.circle(xn[1:], S[1:, 7], color=colors[0], line_width=2)
d.circle(xn[1:], S[1:, 8], color=colors[0], line_width=2)
# Plot lines
a.multi_line(P[0].tolist(), P[1].tolist(), color="white", alpha=0.7, line_width=1)
# Show plot
io.show(column(a, row(b, c, d))) # open a browser
def bokeh_colors(n):
"""Generates a color palette from Bokeh suitable for plots, supporting up to 256 distinct colors based on `n`."""
# returns appropriate 10, 20 or 256 colors for plotting. n is the maximum required colors
if n < 11:
return palettes.Category10[10]
elif n < 21:
return palettes.Category20[20]
elif n < 256:
return [palettes.Viridis256[i] for i in np.linspace(0, 255, n, dtype=int)]
else:
return palettes.Viridis256
def imshow(im, im2=None, p1=None, p2=None):
"""Displays image `im` and optionally `im2` using Bokeh, supports RGB and Greyscale images, overlays points `p1`,
`p2`.
"""
io.reset_output()
io.output_file("bokeh plots.html", title="imshow")
colorImage = len(im.shape) == 3
if colorImage:
h, w, _ = im.shape
else:
h, w = im.shape
# Setup tools
hoverImage = models.HoverTool(
tooltips=[("index", "$index"), ("(x, y)", "($x{(1.11)}, $y{(1.11)})")], point_policy="follow_mouse"
)
p = plotting.figure(
x_range=(0, w),
y_range=(h, 0),
plot_width=round(800 * w / h),
plot_height=800,
x_axis_label=f"pixel (1 - {str(w)})",
y_axis_label=f"pixel (1 - {str(h)})",
title="image",
tools="box_zoom,pan,save,reset,wheel_zoom,crosshair",
active_scroll="wheel_zoom",
active_inspect=None,
)
# Plot image
if colorImage: # RGB
imc = np.ones((im.shape[0], im.shape[1], 4), dtype=np.uint32) * 255
imc[:, :, 0:3] = im
img = np.empty((h, w), dtype=np.uint32)
view = img.view(dtype=np.uint8).reshape((h, w, 4))
view[:, :, :] = np.flipud(np.asarray(imc))
p.image_rgba(image=[img], x=0, y=h, dw=w, dh=h)
else:
p.image(image=[np.flip(im, 0)], x=0, y=h, dw=w, dh=h, palette=palettes.Greys256)
p.quad(top=[h], bottom=[0], left=[0], right=[w], alpha=0) # clear rectangle hack for tooltip image x,y
p.add_tools(hoverImage)
# Show plot
colors = bokeh_colors(3)
if im2 is None:
if p1 is not None:
p.circle(p1[:, 0], p1[:, 1], color=colors[0], line_width=2)
if p2 is not None:
p.circle(p2[:, 0], p2[:, 1], color=colors[1], line_width=2)
p.multi_line(
np.concatenate((p1[:, 0, None], p2[:, 0, None]), 1).tolist(),
np.concatenate((p1[:, 1, None], p2[:, 1, None]), 1).tolist(),
color="white",
alpha=0.3,
line_width=1,
)
io.show(p) # open a browser
else:
h, w = im2.shape
q = plotting.figure(
x_range=(0, w),
y_range=(h, 0),
plot_width=round(600 * w / h),
plot_height=600,
x_axis_label=f"pixel (1 - {str(w)})",
y_axis_label=f"pixel (1 - {str(h)})",
title="image",
tools="box_zoom,pan,save,reset,wheel_zoom,crosshair",
active_scroll="wheel_zoom",
active_inspect=None,
)
q.add_tools(hoverImage)
# Plot image
q.image(image=[np.flip(im2, 0)], x=0, y=h, dw=w, dh=h, palette=palettes.Greys256)
q.quad(top=[h], bottom=[0], left=[0], right=[w], alpha=0) # clear rectangle hack for tooltip image x,y
# Show plots
io.show(column(p, q)) # open a browser