blob: b3eeee8094eace28333b1226476f706e87bf04db [file] [log] [blame]
Parker Schuh4d2978f2017-02-25 11:13:06 -08001package y2017.vision;
2
3message VisionStatus {
4 bool image_valid;
5
6 // Distance to the target in meters.
7 double distance;
8 // The angle in radians of the bottom of the target.
9 double angle;
10
11 // Capture time of the angle using the clock behind monotonic_clock::now().
12 int64_t target_time;
13};
14queue VisionStatus vision_status;