forked from benema/pixhawk-kinect-pkg
-
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.
- Loading branch information
1 parent
8288ba8
commit 41ff9a5
Showing
6 changed files
with
58 additions
and
6 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 |
---|---|---|
|
@@ -15,4 +15,3 @@ CMakeCache.txt | |
Makefile | ||
KinectICP/bin | ||
KinectICP/build | ||
KinectICP/launch |
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
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,53 @@ | ||
<launch> | ||
<!--node pkg="KinectICP" type="KinectICP" name="KinectICP" output="screen" respawn="false" launch-prefix="xterm -e gdb -args"--> | ||
|
||
<node pkg="KinectICP" type="KinectICP" name="KinectICP" output="screen" respawn="false"> | ||
|
||
<!-- Topic to publish the final registered point cloud --> | ||
<param name="publish_merged_pointcloud_topic" value="/merged_pointcloud"/> | ||
|
||
<!-- Topic to subscribe to receive point clouds --> | ||
<param name="subscribe_pointcloud_topic" value="/camera/rgb/points"/> #/autonomous_exploration/incremental_pointcloud | ||
|
||
<!-- Maximum number of iterations for the icp algorithm --> | ||
<param name="max_number_of_iterations_icp" value="100"/> | ||
|
||
<!-- Maximum number of nearest neigbors to look for in the radius search for the icp algorithm --> | ||
<param name="max_nn_icp" value="10" /> | ||
|
||
<!-- Maximum number of nearest neigbors to look for in the radius search to get the overlapping region of two point clouds --> | ||
<param name="max_nn_overlap" value="10" /> | ||
|
||
<!-- Radius for the radius search for the icp algorithm --> | ||
<param name="radius_icp" value="0.05" /> | ||
|
||
<!-- Radius for the radius search to get the overlapping region of two point clouds --> | ||
<param name="radius_overlap" value="0.05" /> | ||
|
||
<!-- Set true if wish to filter outliers, based on the Statistical Outlier Removal in pcl --> | ||
<param name="filter_outliers" value="true"/> | ||
|
||
<!-- Set true if wish to downsample the point cloud before registration (Speeds up processing significantly) --> | ||
<param name="downsample_pointcloud_before" value="false"/> | ||
|
||
<!-- Set true if wish to downsample the point cloud after registration --> | ||
<param name="downsample_pointcloud_after" value="true"/> | ||
|
||
<!-- Downsample leaf size --> | ||
<param name="downsample_leafsize" value="0.035"/> | ||
|
||
<!-- Maximum z-coordinate difference between two correspondences which is allowed --> | ||
<param name="epsilon_z" value="0.01"/> | ||
|
||
<!-- Set true if wish to filter correspondences based on curvature difference --> | ||
<param name="curvature_check" value="true" /> | ||
|
||
<!-- Maximum curvature value difference between two correspondences which is allowed --> | ||
<param name="epsilon_curvature" value="0.01"/> | ||
|
||
<!-- Transformation epsilon value to be reached for convergence --> | ||
<param name="epsilon_transformation" value="1e-8"/> | ||
|
||
</node> | ||
|
||
</launch> |
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