Add debugging information to replayed image names
Useful for seeing when the robot was moving and correlating logs with
video timestamps.
Signed-off-by: Milind Upadhyay <milind.upadhyay@gmail.com>
Change-Id: I54bebeac0fe8f85a7ecaaf76ccd7611f33e09661
diff --git a/y2022/vision/vision_plotter.ts b/y2022/vision/vision_plotter.ts
index 13dd9e5..8b9fa7f 100644
--- a/y2022/vision/vision_plotter.ts
+++ b/y2022/vision/vision_plotter.ts
@@ -9,8 +9,8 @@
const TIME = AosPlotter.TIME;
-// magenta, yellow, cyan, orange
-const PI_COLORS = [[255, 0, 255], [255, 255, 0], [0, 255, 255], [255, 165, 0]];
+// magenta, yellow, cyan, black
+const PI_COLORS = [[255, 0, 255], [255, 255, 0], [0, 255, 255], [0, 0, 0]];
class VisionMessageHandler extends MessageHandler {
constructor(private readonly schema: Schema) {