forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ros2 v0.8.0 localization launch (autowarefoundation#54)
* restore file name for v0.8.0 update in localization launch Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * add random sample (autowarefoundation#84) Signed-off-by: Yamato Ando <yamato.ando@gmail.com> * Add ndt_scan_matcher.yaml (autowarefoundation#162) Signed-off-by: Yuma Nihei <yuma.nihei@tier4.jp> * ]Revert "restore file name for v0.8.0 update in localization launch" This reverts commit f589733f7dad05989bde323baeb5c43a62cd26e1. * fix param type Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * fix exec name Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> Co-authored-by: YamatoAndo <yamato.ando@gmail.com> Co-authored-by: Yuma Nihei <yuma.nihei@tier4.jp>
- Loading branch information
Showing
4 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ endif() | |
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
launch | ||
config | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/**: | ||
ros__parameters: | ||
# Vehicle reference frame | ||
base_frame: "base_link" | ||
|
||
# Subscriber queue size | ||
input_sensor_points_queue_size: 1 | ||
|
||
# NDT implementation type | ||
# 0=PCL_GENERIC, 1=PCL_MODIFIED, 2=OMP | ||
ndt_implement_type: 2 | ||
|
||
# The maximum difference between two consecutive | ||
# transformations in order to consider convergence | ||
trans_epsilon: 0.01 | ||
|
||
# The newton line search maximum step length | ||
step_size: 0.1 | ||
|
||
# The ND voxel grid resolution | ||
resolution: 2.0 | ||
|
||
# The number of iterations required to calculate alignment | ||
max_iterations: 30 | ||
|
||
# Threshold for deciding whetherto trust the estimation result | ||
converged_param_transform_probability: 3.0 | ||
|
||
# neighborhood search method in OMP | ||
# 0=KDTREE, 1=DIRECT26, 2=DIRECT7, 3=DIRECT1 | ||
omp_neighborhood_search_method: 0 | ||
|
||
# Number of threads used for parallel computing | ||
omp_num_threads: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters