Spaces:
Running on Zero
Running on Zero
File size: 10,251 Bytes
b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 c5e91c4 b890615 | 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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | """Trend-video rendering for RynnValue.
Vendored from the official RynnValue repo (Apache-2.0)
https://github.com/alibaba-damo-academy/RynnValue/blob/main/rynn_infer/plot_utils.py
Only two things changed relative to upstream, both for demo latency / legibility:
1. ``_make_trend_plot`` results are memoised per ``plot_current_idx``. Upstream
re-renders the matplotlib figure for *every* video frame even though the plot
only changes at the sampled prediction steps, which costs ~100 ms/frame.
The rendered pixels are identical.
2. The overlay font is a scalable default at a readable size instead of the
tiny PIL bitmap default.
"""
import io
import imageio.v2 as imageio
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt # noqa: E402
import numpy as np # noqa: E402
from PIL import Image, ImageDraw, ImageFont # noqa: E402
def _fig_to_pil(fig, size=None):
buf = io.BytesIO()
fig.savefig(buf, format="png")
buf.seek(0)
img = Image.open(buf).convert("RGB")
buf.close()
plt.close(fig)
if size is not None:
img = img.resize(size)
return img
def _format_time(seconds):
minutes = int(seconds // 60)
seconds_int = int(seconds % 60)
millis = int((seconds - int(seconds)) * 1000)
return f"{minutes:02d}:{seconds_int:02d}.{millis:03d}"
def _make_remaining_time_curve(num_frames, fps):
"""Remaining time (seconds) from frame i to the last frame."""
if num_frames <= 0:
return np.array([], dtype=float)
indices = np.arange(num_frames)
return (num_frames - 1 - indices) / float(fps)
def _make_trend_plot(
value,
current_idx,
fps,
size=(400, 300),
title="Value Trend",
task_title=None,
baseline_label="remaining time",
sampled_indices=None,
):
w, h = size
dpi = 100
fig_w = max(w / dpi, 1.0)
fig_h = max(h / dpi, 1.0)
small_mode = (w < 320 or h < 260)
medium_mode = (w < 420 or h < 320)
if small_mode:
title_fs, label_fs, tick_fs, legend_fs = 9, 8, 7, 7
line_w, marker_s1, marker_s2 = 1.5, 20, 16
show_legend = False
elif medium_mode:
title_fs, label_fs, tick_fs, legend_fs = 10, 9, 8, 8
line_w, marker_s1, marker_s2 = 1.8, 24, 20
show_legend = True
else:
title_fs, label_fs, tick_fs, legend_fs = 12, 10, 9, 9
line_w, marker_s1, marker_s2 = 2.0, 30, 25
show_legend = True
fig, ax1 = plt.subplots(figsize=(fig_w, fig_h), dpi=dpi, constrained_layout=True)
if sampled_indices is not None:
x = np.asarray(sampled_indices, dtype=float)
total_frames = int(x[-1]) + 1
remaining_curve = (x[-1] - x) / float(fps)
else:
x = np.arange(len(value))
total_frames = len(value)
remaining_curve = _make_remaining_time_curve(len(value), fps)
y = np.asarray(value, dtype=float)
ax1.plot(
x[: current_idx + 1],
y[: current_idx + 1],
color="tab:blue",
linewidth=line_w,
label="value",
)
ax1.scatter(
[x[current_idx]],
[y[current_idx]],
color="red",
s=marker_s1,
zorder=3,
label="current value",
)
ax1.set_xlabel("Frame", fontsize=label_fs)
ax1.set_ylabel("Value", color="tab:blue", fontsize=label_fs)
ax1.tick_params(axis="x", labelsize=tick_fs)
ax1.tick_params(axis="y", labelcolor="tab:blue", labelsize=tick_fs)
ax1.grid(True, alpha=0.3)
ax1.set_xlim(0, max(total_frames - 1, 1))
y_min, y_max = float(np.min(y)), float(np.max(y))
if y_min == y_max:
y_min -= 1.0
y_max += 1.0
margin = 0.05 * (y_max - y_min)
ax1.set_ylim(y_min - margin, y_max + margin)
ax2 = ax1.twinx()
ax2.plot(
x,
remaining_curve,
color="green",
linestyle="--",
linewidth=line_w,
label=baseline_label,
)
ax2.scatter(
[x[current_idx]],
[remaining_curve[current_idx]],
color="green",
s=marker_s2,
zorder=3,
label="current remaining",
)
right_ylabel = "Remain (s)" if small_mode else "Remaining Time (s)"
ax2.set_ylabel(right_ylabel, color="green", fontsize=label_fs)
ax2.tick_params(axis="y", labelcolor="green", labelsize=tick_fs)
rt_min, rt_max = float(np.min(remaining_curve)), float(np.max(remaining_curve))
if rt_min == rt_max:
rt_min -= 1.0
rt_max += 1.0
rt_margin = 0.05 * (rt_max - rt_min)
ax2.set_ylim(rt_min - rt_margin, rt_max + rt_margin)
if small_mode:
full_title = title
else:
full_title = title if task_title is None else f"{task_title}\n{title}"
ax1.set_title(full_title, fontsize=title_fs)
if show_legend:
lines1, labels1 = ax1.get_legend_handles_labels()
lines2, labels2 = ax2.get_legend_handles_labels()
ax1.legend(lines1 + lines2, labels1 + labels2, loc="best", fontsize=legend_fs)
return _fig_to_pil(fig, size=size)
def _concat_horizontally(img1, img2, bg_color=(255, 255, 255)):
h = max(img1.height, img2.height)
w = img1.width + img2.width
canvas = Image.new("RGB", (w, h), bg_color)
canvas.paste(img1, (0, 0))
canvas.paste(img2, (img1.width, 0))
return canvas
def _get_font(size=15):
try:
return ImageFont.load_default(size=size)
except Exception:
try:
return ImageFont.load_default()
except Exception:
return None
def _draw_overlay_text(img, lines, font=None, xy=(10, 10), fill=(255, 0, 0), line_spacing=6):
img = img.copy()
draw = ImageDraw.Draw(img)
if font is None:
font = _get_font()
x, y = xy
for line in lines:
# thin dark outline keeps red text legible on bright frames
draw.text((x, y), line, fill=(0, 0, 0), font=font, stroke_width=2)
draw.text((x, y), line, fill=fill, font=font)
bbox = draw.textbbox((x, y), line, font=font)
line_height = bbox[3] - bbox[1]
y += line_height + line_spacing
return img
def _ceil_to_multiple(x, multiple):
return ((x + multiple - 1) // multiple) * multiple
def _pad_image_to_multiple(img, multiple=16, bg_color=(255, 255, 255)):
new_w = _ceil_to_multiple(img.width, multiple)
new_h = _ceil_to_multiple(img.height, multiple)
if new_w == img.width and new_h == img.height:
return img
canvas = Image.new("RGB", (new_w, new_h), bg_color)
canvas.paste(img, (0, 0))
return canvas
def save_video_with_trend(
images,
value,
output_path,
fps=30,
plot_width_ratio=0.45,
title="Value Trend",
task_title=None,
baseline_label="remaining time",
show_remaining_time_text=True,
show_value_text=True,
show_task_title=True,
min_plot_width=260,
max_plot_width=520,
min_plot_height=220,
codec="libx264",
macro_block_size=16,
sampled_indices=None,
):
if len(images) == 0:
raise ValueError("images is empty")
if sampled_indices is not None:
if len(value) != len(sampled_indices):
raise ValueError(
f"len(value)={len(value)} != len(sampled_indices)={len(sampled_indices)}"
)
else:
if len(images) != len(value):
raise ValueError(f"len(images)={len(images)} != len(value)={len(value)}")
images = [img.convert("RGB") for img in images]
base_w, base_h = images[0].size
if base_h < min_plot_height:
scale = float(min_plot_height) / float(base_h)
base_w = int(round(base_w * scale))
base_h = min_plot_height
images = [img.resize((base_w, base_h)) for img in images]
plot_w = int(base_w * plot_width_ratio)
plot_w = max(min_plot_width, min(plot_w, max_plot_width))
plot_h = max(min_plot_height, base_h)
num_frames = len(images)
remaining_curve = _make_remaining_time_curve(num_frames, fps)
if sampled_indices is not None:
sampled_set = set(sampled_indices)
idx_to_value_pos = {idx: pos for pos, idx in enumerate(sampled_indices)}
else:
sampled_set = None
idx_to_value_pos = None
writer = imageio.get_writer(
output_path,
fps=fps,
codec=codec,
macro_block_size=macro_block_size,
)
font = _get_font(15)
plot_cache = {}
plot_current_idx = 0
try:
for i, img in enumerate(images):
overlay_lines = []
if show_task_title and task_title is not None:
overlay_lines.append(f"task: {task_title}")
if sampled_indices is not None:
if i in sampled_set:
plot_current_idx = idx_to_value_pos[i]
if show_value_text:
overlay_lines.append(f"value: {value[plot_current_idx]:.4f}")
else:
plot_current_idx = i
if show_value_text:
overlay_lines.append(f"value: {value[i]:.4f}")
if show_remaining_time_text:
overlay_lines.append(f"remaining: {_format_time(remaining_curve[i])}")
img = _draw_overlay_text(img, overlay_lines, font=font, xy=(10, 10), fill=(255, 0, 0))
plot_img = plot_cache.get(plot_current_idx)
if plot_img is None:
plot_img = _make_trend_plot(
value=value,
current_idx=plot_current_idx,
fps=fps,
size=(plot_w, plot_h),
title=title,
task_title=task_title,
baseline_label=baseline_label,
sampled_indices=sampled_indices,
)
if plot_img.height != img.height:
plot_img = plot_img.resize((plot_img.width, img.height))
plot_cache[plot_current_idx] = plot_img
frame = _concat_horizontally(img, plot_img)
# Proactively pad to a multiple of macro_block_size to avoid ffmpeg warnings
if macro_block_size and macro_block_size > 1:
frame = _pad_image_to_multiple(frame, multiple=macro_block_size)
writer.append_data(np.array(frame))
finally:
writer.close()
|