Commit e0f4760 1 parent b3f6aaf commit e0f4760 Copy full SHA for e0f4760
File tree 3 files changed +4
-2
lines changed
planning/behavior_velocity_intersection_module
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 72
72
enable : false
73
73
creep_velocity : 0.8333
74
74
peeking_offset : -0.5
75
- occlusion_required_clearance_distance : 55
75
+ occlusion_required_clearance_distance : 55.0
76
76
possible_object_bbox : [1.5, 2.5]
77
77
ignore_parked_vehicle_speed_threshold : 0.8333
78
78
occlusion_detection_hold_time : 1.5
Original file line number Diff line number Diff line change @@ -152,6 +152,8 @@ IntersectionModuleManager::IntersectionModuleManager(rclcpp::Node & node)
152
152
getOrDeclareParameter<double >(node, ns + " .occlusion.creep_during_peeking.creep_velocity" );
153
153
ip.occlusion .peeking_offset =
154
154
getOrDeclareParameter<double >(node, ns + " .occlusion.peeking_offset" );
155
+ ip.occlusion .occlusion_required_clearance_distance =
156
+ getOrDeclareParameter<double >(node, ns + " .occlusion.occlusion_required_clearance_distance" );
155
157
ip.occlusion .possible_object_bbox =
156
158
getOrDeclareParameter<std::vector<double >>(node, ns + " .occlusion.possible_object_bbox" );
157
159
ip.occlusion .ignore_parked_vehicle_speed_threshold =
Original file line number Diff line number Diff line change @@ -1195,7 +1195,7 @@ IntersectionModule::DecisionResult IntersectionModule::modifyPathVelocityDetail(
1195
1195
}
1196
1196
}
1197
1197
1198
- const double is_amber_or_red =
1198
+ const bool is_amber_or_red =
1199
1199
(traffic_prioritized_level == TrafficPrioritizedLevel::PARTIALLY_PRIORITIZED) ||
1200
1200
(traffic_prioritized_level == TrafficPrioritizedLevel::FULLY_PRIORITIZED);
1201
1201
auto occlusion_status =
You can’t perform that action at this time.
0 commit comments