blob: ed46874ee4fec9825cc0ec439c37eeda7b06df16 [file] [log] [blame]
Brian Silverman2ccf8c52016-03-15 00:22:26 -04001package y2016.vision;
2
3message VisionStatus {
4 // Times when the images were taken as nanoseconds on CLOCK_MONOTONIC on the
5 // TK1.
6 int64_t left_image_timestamp;
7 int64_t right_image_timestamp;
8 // Times when the images were sent from the TK1 as nanoseconds on the TK1's
9 // CLOCK_MONOTONIC.
10 int64_t left_send_timestamp;
11 int64_t right_send_timestamp;
12
13 // Horizontal angle of the goal in radians.
14 // TODO(Brian): Figure out which way is positive.
15 double horizontal_angle;
16 // Vertical angle of the goal in radians.
17 // TODO(Brian): Figure out which way is positive.
18 double vertical_angle;
19 // Distance to the target in meters.
20 double distance;
21};
22queue VisionStatus vision_status;