From 60587ab87bdf1f2e9ec2fad57d761eba00a30489 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Mon, 27 Jul 2026 21:04:46 -0500 Subject: [PATCH] fix: normals plot titles copy-pasted from instance id --- examples/02_draw_images.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/02_draw_images.py b/examples/02_draw_images.py index f4ed790..d113334 100644 --- a/examples/02_draw_images.py +++ b/examples/02_draw_images.py @@ -52,10 +52,10 @@ if args.normals_enabled: plt.subplot(nrows, 2, 7) - plt.title('left instance id') + plt.title('left normals') plt.imshow(images['robot.front_camera.left.normals_image']) plt.subplot(nrows, 2, 8) - plt.title('right instance id') + plt.title('right normals') plt.imshow(images['robot.front_camera.right.normals_image']) plt.show() \ No newline at end of file