Skip to content

Commit

Permalink
Merge pull request autowarefoundation#143 from tier4/sync-upstream
Browse files Browse the repository at this point in the history
chore: sync upstream
  • Loading branch information
tier4-autoware-private-bot[bot] authored May 25, 2022
2 parents c8a603b + 9c9c886 commit eaddbe8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def create_single_frame_obstacle_segmentation_components(self, input_topic, outp
components.append(
self.get_additional_lidars_concatenated_component(
input_topics=[common_pipeline_output]
+ list(map(lambda x: f"{x}/pointcloud", additional_lidars)),
+ [f"{x}/pointcloud" for x in additional_lidars],
output_topic=relay_topic if use_ransac else output_topic,
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,28 +83,6 @@

# advanced parameters to improve performance as much as possible
advanced:
option:
# check if planned trajectory is outside drivable area
drivability_check:
# true: vehicle shape is considered as a set of circles
# false: vehicle shape is considered as footprint (= rectangle)
use_vehicle_circles: false

# parameters only when use_vehicle_circles is true
vehicle_circles:
use_manual_vehicle_circles: false
num_for_constraints: 4

# parameters only when use_manual_vehicle_circles is true
longitudinal_offsets: [-0.15, 0.88, 1.9, 2.95]
radius: 0.95

# parameters only when use_manual_vehicle_circles is false
radius_ratio: 0.9
# If this parameter is commented out, the parameter is calculated automatically
# based on the vehicle length and width
# num_for_radius: 4

eb:
common:
num_joint_buffer_points: 3 # number of joint buffer points
Expand Down Expand Up @@ -161,15 +139,13 @@
# two_step_soft_constraint: false

vehicle_circles:
use_manual_vehicle_circles: false
num_for_constraints: 3

# parameters only when use_manual_vehicle_circles is true
longitudinal_offsets: [-0.15, 0.88, 1.9, 2.95]
radius: 0.95

# parameters only when use_manual_vehicle_circles is false
radius_ratio: 0.8
# If this parameter is commented out, the parameter is calculated automatically
# based on the vehicle length and width
# num_for_radius: 4
method: "rear_drive"

uniform_circle:
num: 3
radius_ratio: 0.8

rear_drive:
num_for_calculation: 3
front_radius_ratio: 1.0
rear_radius_ratio: 1.0

0 comments on commit eaddbe8

Please sign in to comment.