blob: 7516af17f5b152b1b20c508bade92cc8c782a97d [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2017.vision;
2
3// Published on ".y2017.vision.vision_status"
4table VisionStatus {
Austin Schuhd7851b02020-11-14 13:46:27 -08005 image_valid:bool (id: 0);
Alex Perrycb7da4b2019-08-28 19:35:56 -07006
7 // Distance to the target in meters.
Austin Schuhd7851b02020-11-14 13:46:27 -08008 distance:double (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07009 // The angle in radians of the bottom of the target.
Austin Schuhd7851b02020-11-14 13:46:27 -080010 angle:double (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -070011
12 // Capture time of the angle using the clock behind monotonic_clock::now().
Austin Schuhd7851b02020-11-14 13:46:27 -080013 target_time:int64 (id: 3);
Alex Perrycb7da4b2019-08-28 19:35:56 -070014}
15
16root_type VisionStatus;