Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ndt): remove ndt package #2053

Merged
merged 18 commits into from
Oct 27, 2022
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
# 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
Expand All @@ -23,11 +19,6 @@
# The number of iterations required to calculate alignment
max_iterations: 30

# Converged param type
# 0=TRANSFORM_PROBABILITY, 1=NEAREST_VOXEL_TRANSFORMATION_LIKELIHOOD
# NEAREST_VOXEL_TRANSFORMATION_LIKELIHOOD is only available when NDTImplementType::OMP is selected
converged_param_type: 1

# If converged_param_type is 0
# Threshold for deciding whether to trust the estimation result
converged_param_transform_probability: 3.0
Expand All @@ -45,12 +36,12 @@
# Tolerance of distance difference between two initial poses used for linear interpolation. [m]
initial_pose_distance_tolerance_m: 10.0

# neighborhood search method in OMP
# neighborhood search method
# 0=KDTREE, 1=DIRECT26, 2=DIRECT7, 3=DIRECT1
omp_neighborhood_search_method: 0
neighborhood_search_method: 0

# Number of threads used for parallel computing
omp_num_threads: 4
num_threads: 4

# The covariance of output pose
# Do note that this covariance matrix is empirically derived
Expand Down
69 changes: 0 additions & 69 deletions localization/ndt/CMakeLists.txt

This file was deleted.

12 changes: 0 additions & 12 deletions localization/ndt/README.md

This file was deleted.

71 changes: 0 additions & 71 deletions localization/ndt/include/ndt/base.hpp

This file was deleted.

25 changes: 0 additions & 25 deletions localization/ndt/include/ndt/impl/base.hpp

This file was deleted.

Loading