blob: 2785872ed4c279feafab2fc49acd4719b9b57d74 [file] [log] [blame]
James Kuszmaul04a343c2023-02-20 16:38:22 -08001include "y2023/localizer/status.fbs";
2
3namespace y2023.localizer;
4
5table TargetEstimateDebug {
6 camera:uint8 (id: 0);
7 camera_x:double (id: 1);
8 camera_y:double (id: 2);
9 camera_theta:double (id: 3);
10 implied_robot_x:double (id: 4);
11 implied_robot_y:double (id: 5);
12 implied_robot_theta:double (id: 6);
13 accepted:bool (id: 7);
14 rejection_reason:RejectionReason (id: 8);
15 // Image age (more human-readable than trying to interpret raw nanosecond
16 // values).
17 image_age_sec:double (id: 9);
18}
19
20table Visualization {
21 targets:[TargetEstimateDebug] (id: 0);
22 statistics:CumulativeStatistics (id: 1);
23}
24
25root_type Visualization;