|
1 | 1 | syntax = "proto2";
|
2 | 2 |
|
3 |
| -message SSL_DetectionBall { |
4 |
| - required float confidence = 1; |
5 |
| - optional uint32 area = 2; |
6 |
| - required float x = 3; |
7 |
| - required float y = 4; |
8 |
| - optional float z = 5; |
9 |
| - required float pixel_x = 6; |
10 |
| - required float pixel_y = 7; |
| 3 | +message SSL_DetectionBall |
| 4 | +{ |
| 5 | + required float confidence = 1; |
| 6 | + optional uint32 area = 2; |
| 7 | + required float x = 3; |
| 8 | + required float y = 4; |
| 9 | + optional float z = 5; |
| 10 | + required float pixel_x = 6; |
| 11 | + required float pixel_y = 7; |
11 | 12 | }
|
12 | 13 |
|
13 |
| -message SSL_DetectionRobot { |
14 |
| - required float confidence = 1; |
15 |
| - optional uint32 robot_id = 2; |
16 |
| - required float x = 3; |
17 |
| - required float y = 4; |
18 |
| - optional float orientation = 5; |
19 |
| - required float pixel_x = 6; |
20 |
| - required float pixel_y = 7; |
21 |
| - optional float height = 8; |
| 14 | +message SSL_DetectionRobot |
| 15 | +{ |
| 16 | + required float confidence = 1; |
| 17 | + optional uint32 robot_id = 2; |
| 18 | + required float x = 3; |
| 19 | + required float y = 4; |
| 20 | + optional float orientation = 5; |
| 21 | + required float pixel_x = 6; |
| 22 | + required float pixel_y = 7; |
| 23 | + optional float height = 8; |
22 | 24 | }
|
23 | 25 |
|
24 |
| -message SSL_DetectionFrame { |
25 |
| - required uint32 frame_number = 1; |
26 |
| - required double t_capture = 2; |
27 |
| - required double t_sent = 3; |
28 |
| - required uint32 camera_id = 4; |
29 |
| - repeated SSL_DetectionBall balls = 5; |
30 |
| - repeated SSL_DetectionRobot robots_yellow = 6; |
31 |
| - repeated SSL_DetectionRobot robots_blue = 7; |
| 26 | +message SSL_DetectionFrame |
| 27 | +{ |
| 28 | + required uint32 frame_number = 1; |
| 29 | + required double t_capture = 2; |
| 30 | + required double t_sent = 3; |
| 31 | + required uint32 camera_id = 4; |
| 32 | + repeated SSL_DetectionBall balls = 5; |
| 33 | + repeated SSL_DetectionRobot robots_yellow = 6; |
| 34 | + repeated SSL_DetectionRobot robots_blue = 7; |
32 | 35 | }
|
0 commit comments