blob: 6e4a02a487597f4a55bef26cf52f6ce4dcab08be [file] [log] [blame]
Parker Schuh4d2978f2017-02-25 11:13:06 -08001package y2017.vision;
2
Austin Schuhb6c5c852019-05-19 20:13:31 -07003// Published on ".y2017.vision.vision_status"
Parker Schuh4d2978f2017-02-25 11:13:06 -08004message VisionStatus {
5 bool image_valid;
6
7 // Distance to the target in meters.
8 double distance;
9 // The angle in radians of the bottom of the target.
10 double angle;
11
12 // Capture time of the angle using the clock behind monotonic_clock::now().
13 int64_t target_time;
14};