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 ndt scan matcher (autowarefoundation#266)
* restore file name for v0.8.0 update Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * delete std::cout (autowarefoundation#998) Signed-off-by: Yamato Ando <yamato.ando@gmail.com> * Add ndt_scan_matcher.yaml (autowarefoundation#1122) Signed-off-by: Yuma Nihei <yuma.nihei@tier4.jp> * Revert "restore file name for v0.8.0 update" This reverts commit 38869185b4f423a2656f18f71a18de30d1a83730. Co-authored-by: YamatoAndo <yamato.ando@gmail.com> Co-authored-by: Yuma Nihei <yuma.nihei@tier4.jp>
- Loading branch information
1 parent
4cf182c
commit b134f6e
Showing
6 changed files
with
43 additions
and
54 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
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
35 changes: 35 additions & 0 deletions
35
localization/pose_estimator/ndt_scan_matcher/ndt_scan_matcher/config/ndt_scan_matcher.yaml
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,35 @@ | ||
/**: | ||
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