Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

support x1 perception config #129

Merged
merged 6 commits into from
Nov 25, 2021

Conversation

satoshi-ota
Copy link
Contributor

@satoshi-ota satoshi-ota commented Nov 23, 2021

PR Type

  • New Feature
  • Improvement
  • Bug Fix

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.

  • Commits are properly organized and messages are according to the guideline
  • Code follows coding guidelines
  • (Optional) Unit tests have been written for new behavior
  • PR title describes the changes

Post-Review Checklist for the PR Author

PR Author should check the checkboxes below before merging.

  • All open points are addressed and tracked via issues or tickets
  • Write release notes

CI Checks

  • Build and test for PR: Required to pass before the merge.
  • Check spelling: NOT required to pass before the merge. It is up to the reviewer(s). See here if you want to add some words to the spell check dictionary.

@yukkysaito
Copy link
Collaborator

@satoshi-ota 少し想定と違うところがあるので、定例でお話します!

@satoshi-ota
Copy link
Contributor Author

satoshi-ota commented Nov 24, 2021

@yukkysaito fix following points in 75ae9f2, b36b237

  • remove config files depend on each products
  • remove sensor_model arg from perception_launch.xml/autoware_launch.xml/logging_simulator.launch.xml
  • set xx1 perception config as default in ground_segmentation.param.yaml

@satoshi-ota satoshi-ota marked this pull request as ready for review November 24, 2021 03:04
@taichiH
Copy link
Contributor

taichiH commented Nov 24, 2021

@satoshi-ota
Why separate compare map components and ransac pipeline components?

Comment on lines 300 to 358
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")}],
)
Copy link
Contributor

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.

Copy link
Contributor Author

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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この辺のパラメータ追い出しくらいまではやりたいです

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix in 3a2a851

@satoshi-ota
Copy link
Contributor Author

@satoshi-ota Why separate compare map components and ransac pipeline components?

@taichiH There is no clear reason.

@satoshi-ota
Copy link
Contributor Author

@yukkysaito please check modifications in 3a2a851, 9ff854c and approve 🙏

@satoshi-ota satoshi-ota merged commit b760257 into use-autoware-auto-msgs Nov 25, 2021
@satoshi-ota satoshi-ota deleted the auto/fix-x1-pipeline branch November 25, 2021 01:57
j4tfwm6z pushed a commit that referenced this pull request Feb 1, 2022
kazuki527 pushed a commit to kazuki527/autoware_launch that referenced this pull request Apr 25, 2022
* 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>
tzhong518 pushed a commit that referenced this pull request Aug 1, 2022
kosuke55 pushed a commit that referenced this pull request Jan 17, 2023
…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>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants