Apollo 10.0
自动驾驶开放平台
model_process.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.perception.common;
4
5// preprocess
6message Resize {
7 optional uint32 width = 1;
8 optional uint32 height = 2;
9 optional float fx = 3;
10 optional float fy = 4;
11}
12
13message Normalize {
14 repeated float mean = 1;
15 repeated float std = 2;
16}
17
18message Crop {
19 optional uint32 x = 1;
20 optional uint32 y = 2;
21 optional uint32 width = 3;
22 optional uint32 height = 4;
23}
24
26 optional int32 gpu_id = 1;
27 optional double normalizing_factor = 2;
28 optional int32 num_point_feature = 3;
29 optional bool enable_ground_removal = 4;
30 optional double ground_removal_height = 5;
31 optional bool enable_downsample_beams = 6;
32 optional int32 downsample_beams_factor = 7;
33 optional bool enable_downsample_pointcloud = 8;
34 optional bool enable_fuse_frames = 9;
35 optional int32 num_fuse_frames = 10;
36 optional double fuse_time_interval = 11;
37 optional bool enable_shuffle_points = 12;
38 optional int32 max_num_points = 13;
39 optional bool reproduce_result_mode = 14;
40 optional bool enable_roi_outside_removal = 15;
41}
42
44 optional float score_threshold = 1;
45 optional float nms_overlap_threshold = 2;
46 optional int32 num_output_box_feature = 3;
47 optional float bottom_enlarge_height = 4;
48 optional float top_enlarge_height = 5;
49 optional float width_enlarge_value = 6;
50 optional float length_enlarge_value = 7;
51 optional float cone_score_threshold = 8 [default = 0.35];
52 optional float ped_score_threshold = 9 [default = 0.25];
53 optional float cyc_score_threshold = 10 [default = 0.25];
54 optional float small_mot_score_threshold = 11 [default = 0.25];
55 optional float big_mot_score_threshold = 12 [default = 0.25];
56}
57
59 optional bool use_trt = 1 [default = false];
60 optional int32 trt_precision = 2 [default = 0];
61 optional bool trt_use_static = 3 [default = false];
62 optional bool use_calibration = 4 [default = false];
63 optional bool collect_shape_info = 5 [default = false];
64 optional bool use_dynamicshape = 6 [default = false];
65 optional string dynamic_shape_file = 7 [default = ""];
66}
Definition future.h:29