-
Notifications
You must be signed in to change notification settings - Fork 38
Conversation
@satoshi-ota 少し想定と違うところがあるので、定例でお話します! |
@yukkysaito fix following points in 75ae9f2, b36b237
|
@satoshi-ota |
compare_elevation_map_filter_component = ComposableNode( | ||
package="compare_map_segmentation", | ||
plugin="compare_map_segmentation::CompareElevationMapFilterComponent", | ||
name="compare_elevation_map_filter", | ||
remappings=[ | ||
("input", "no_ground/oneshot/pointcloud"), | ||
("output", "map_filtered/pointcloud"), | ||
("input/elevation_map", "/map/elevation_map"), | ||
], | ||
parameters=[ | ||
{ | ||
"map_frame": "map", | ||
"map_layer_name": "elevation", | ||
"height_diff_thresh": 0.15, | ||
"input_frame": "map", | ||
"output_frame": "base_link", | ||
} | ||
], | ||
extra_arguments=[{"use_intra_process_comms": False}], # can't use this with transient_local | ||
) | ||
|
||
downsampling_component = ComposableNode( | ||
package="pointcloud_preprocessor", | ||
plugin="pointcloud_preprocessor::VoxelGridDownsampleFilterComponent", | ||
name="voxel_grid_filter", | ||
remappings=[ | ||
("input", "map_filtered/pointcloud"), | ||
("output", "voxel_grid_filtered/pointcloud"), | ||
], | ||
parameters=[ | ||
{ | ||
"input_frame": LaunchConfiguration("base_frame"), | ||
"output_frame": LaunchConfiguration("base_frame"), | ||
"voxel_size_x": 0.04, | ||
"voxel_size_y": 0.04, | ||
"voxel_size_z": 0.08, | ||
} | ||
], | ||
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}], | ||
) | ||
|
||
voxel_grid_outlier_filter_component = ComposableNode( | ||
package="pointcloud_preprocessor", | ||
plugin="pointcloud_preprocessor::VoxelGridOutlierFilterComponent", | ||
name="voxel_grid_outlier_filter", | ||
remappings=[ | ||
("input", "voxel_grid_filtered/pointcloud"), | ||
("output", "/perception/object_segmentation/pointcloud"), | ||
], | ||
parameters=[ | ||
{ | ||
"voxel_size_x": 0.4, | ||
"voxel_size_y": 0.4, | ||
"voxel_size_z": 100.0, | ||
"voxel_points_threshold": 5, | ||
} | ||
], | ||
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}], | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not easy to read, so it's better to put these lines in a separete function.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix in 9ff854c
"input_frame": LaunchConfiguration("base_frame"), | ||
"output_frame": LaunchConfiguration("base_frame"), | ||
"min_x": 0.0, | ||
"max_x": 19.6, # max_x: 18.0m + base_link2livox_front_center distance 1.6m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この辺のパラメータ追い出しくらいまではやりたいです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix in 3a2a851
@taichiH There is no clear reason. |
@yukkysaito please check modifications in 3a2a851, 9ff854c and approve 🙏 |
perception_launch/launch/object_segmentation/ground_segmentation/ground_segmentation.launch.py
Outdated
Show resolved
Hide resolved
* modify rviz panel (tier4#110) * add voltage * fix status panel * fix typo * fix system monitor diag (tier4#109) * tmp commit * some fix * comment out * add file and comment out Co-authored-by: prds1lg <prod-s1-github@tier4.jp> * behavior path planner: parameter tuning and some fix (tier4#108) * delete auto approval * update rviz * parameter tuning * update rviz * tuning tracking parameter * tuning avoidance * tuning obstacle avoidance * delete unused * change stop margin * parameter fix Co-authored-by: prds1lg <prod-s1-github@tier4.jp> * fix Random filter (tier4#114) * modify engage velocity + obstacle avoidance (tier4#113) * modify engage velocity * tuning avoidance * parameter tuning Co-authored-by: prds1lg <prod-s1-github@tier4.jp> * Fix heartbeat (tier4#126) (tier4#129) * fix: external_emergenxy_stop_heartbeat_timeout to 3.0 * feat: add heartbeat to meter panel * feat: use_external_emergency_stop to false in psim * fix: comment out * fix: change timeout sec Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp> * fix: delete space * fix: delete space * fix: for pre-commit * fix: typo * fix typo Co-authored-by: prds1lg <prod-s1-github@tier4.jp> Co-authored-by: tier4-autoware-private-bot[bot] <87871706+tier4-autoware-private-bot[bot]@users.noreply.github.com>
…ation (#129) * feat(autoware_launch): move config to autoware_launch for localization Signed-off-by: kminoda <koji.minoda@tier4.jp> * fix order Signed-off-by: kminoda <koji.minoda@tier4.jp> Signed-off-by: kminoda <koji.minoda@tier4.jp>
PR Type
Related Links
Description
Review Procedure
Remarks
Pre-Review Checklist for the PR Author
PR Author should check the checkboxes below when creating the PR.
Checklist for the PR Reviewer
Reviewers should check the checkboxes below before approval.
Post-Review Checklist for the PR Author
PR Author should check the checkboxes below before merging.
CI Checks