Brian Silverman | 2ccf8c5 | 2016-03-15 00:22:26 -0400 | [diff] [blame] | 1 | package y2016.vision; |
| 2 | |
| 3 | message 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 | }; |
| 22 | queue VisionStatus vision_status; |