Apollo 10.0
自动驾驶开放平台
camera_update.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.dreamview;
5
6
7message CameraUpdate {
8 // The transformation matrix of localization in world coordinate system
9 // are stored in the double array in column-major order
10 repeated double localization = 1;
11
12 // The transformation matrix of localization to camera are stored in the
13 // double array in column-major order
14 repeated double localization2camera_tf = 2;
15
16 // Camera image data
17 optional bytes image = 3;
18
19 // Camera image aspect ratio = width / height
20 optional double image_aspect_ratio = 4;
21 repeated apollo.perception.BBox2D bbox2d = 5;
22 repeated int32 obstacles_id = 6;
23 enum SubType{
24 ST_UNKNOWN = 0;
25 ST_UNKNOWN_MOVABLE = 1;
26 ST_UNKNOWN_UNMOVABLE = 2;
27 ST_CAR = 3;
28 ST_VAN = 4;
29 ST_TRUCK = 5;
30 ST_BUS = 6;
31 ST_CYCLIST = 7;
32 ST_MOTORCYCLIST = 8;
33 ST_TRICYCLIST = 9;
34 ST_PEDESTRIAN = 10;
35 ST_TRAFFICCONE = 11;
36 }
37 repeated SubType obstacles_sub_type = 7;
38 optional double k_image_scale = 8;
39}
class register implement
Definition arena_queue.h:37