Apollo 11.0
自动驾驶开放平台
mrf_config.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.perception.radar4d;
4
6 optional string sensor_name_pair = 1 [default = ""];
7
8 optional float location_dist_weight = 2 [default = 0];
9 optional float direction_dist_weight = 3 [default = 0];
10 optional float bbox_size_dist_weight = 4 [default = 0];
11 optional float point_num_dist_weight = 5 [default = 0];
12 optional float histogram_dist_weight = 6 [default = 0];
13 optional float centroid_shift_dist_weight = 7 [default = 0];
14 optional float bbox_iou_dist_weight = 8 [default = 0];
15 optional float semantic_map_dist_weight = 9 [default = 0];
16}
17
19 repeated MrfDistanceWeight foreground_weights = 1;
20 repeated MrfDistanceWeight background_weights = 2;
21}
22
24 optional string foreground_mathcer_method = 1
25 [default = "MultiHmBipartiteGraphMatcher"];
26 optional string background_matcher_method = 2
27 [default = "GnnBipartiteGraphMatcher"];
28 optional float bound_value = 3 [default = 100.0];
29 optional float max_match_distance = 4 [default = 4.0];
32message MrfTrackerConfig {
33 repeated string filter_name = 1;
37 optional bool use_adaptive = 1 [default = true];
38 optional bool use_breakdown = 2 [default = true];
39 optional bool use_convergence_boostup = 3 [default = true];
41 optional double init_velocity_variance = 4 [default = 5.0];
42 optional double init_acceleration_variance = 5 [default = 10.0];
43 optional double measured_velocity_variance = 6 [default = 0.4];
44 optional double predict_variance_per_sqrsec = 7 [default = 10.0];
46 optional uint32 boostup_history_size_minimum = 8 [default = 3];
47 optional uint32 boostup_history_size_maximum = 9 [default = 6];
48 optional double converged_confidence_minimum = 10 [default = 0.5];
49 optional double noise_maximum = 12 [default = 0.1];
50
51 optional double trust_orientation_range = 13 [default = 40];
55 optional double claping_acceleration_threshold = 1 [default = 10];
56 optional double claping_speed_threshold = 2 [default = 1.0];
60 optional double bottom_points_ignore_threshold = 1 [default = 0.1];
61 optional double top_points_ignore_threshold = 2 [default = 1.6];
65 repeated string main_sensor = 1;
66 optional bool use_histogram_for_match = 2 [default = true];
67 optional uint32 histogram_bin_size = 3 [default = 10];
68 optional bool output_predict_objects = 4 [default = false];
69 optional double reserved_invisible_time = 5 [default = 0.2];
70 optional bool use_frame_timestamp = 6 [default = false];
71}
syntax