James Kuszmaul | 04a343c | 2023-02-20 16:38:22 -0800 | [diff] [blame^] | 1 | include "y2023/localizer/status.fbs"; |
| 2 | |
| 3 | namespace y2023.localizer; |
| 4 | |
| 5 | table 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 | |
| 20 | table Visualization { |
| 21 | targets:[TargetEstimateDebug] (id: 0); |
| 22 | statistics:CumulativeStatistics (id: 1); |
| 23 | } |
| 24 | |
| 25 | root_type Visualization; |