|
Point Cloud Library (PCL)
1.6.0
|
CorrespondenceEstimationNormalShooting computes correspondences as points in the target cloud which have minimum distance to normals computed on the input cloud More...
#include <pcl/registration/correspondence_estimation_normal_shooting.h>


Public Types | |
| typedef pcl::KdTree< PointTarget > | KdTree |
| typedef pcl::KdTree < PointTarget >::Ptr | KdTreePtr |
| typedef pcl::PointCloud < PointSource > | PointCloudSource |
| typedef PointCloudSource::Ptr | PointCloudSourcePtr |
| typedef PointCloudSource::ConstPtr | PointCloudSourceConstPtr |
| typedef pcl::PointCloud < PointTarget > | PointCloudTarget |
| typedef PointCloudTarget::Ptr | PointCloudTargetPtr |
| typedef PointCloudTarget::ConstPtr | PointCloudTargetConstPtr |
| typedef KdTree::PointRepresentationConstPtr | PointRepresentationConstPtr |
| typedef pcl::PointCloud < NormalT >::Ptr | NormalsPtr |
| typedef pcl::PointCloud < PointSource > | PointCloud |
| typedef PointCloud::Ptr | PointCloudPtr |
| typedef PointCloud::ConstPtr | PointCloudConstPtr |
| typedef PointIndices::Ptr | PointIndicesPtr |
| typedef PointIndices::ConstPtr | PointIndicesConstPtr |
Public Member Functions | |
| CorrespondenceEstimationNormalShooting () | |
| Empty constructor. More... | |
| void | setSourceNormals (const NormalsPtr &normals) |
| Set the normals computed on the input point cloud. More... | |
| NormalsPtr | getSourceNormals () const |
| Get the normals of the input point cloud. More... | |
| void | determineCorrespondences (pcl::Correspondences &correspondences, float max_distance=std::numeric_limits< float >::max()) |
| Determine the correspondences between input and target cloud. More... | |
| void | setKSearch (unsigned int k) |
| Set the number of nearest neighbours to be considered in the target point cloud. More... | |
| void | getKSearch () const |
| Get the number of nearest neighbours considered in the target point cloud for computing correspondence. More... | |
| virtual void | setInputTarget (const PointCloudTargetConstPtr &cloud) |
| Provide a pointer to the input target (e.g., the point cloud that we want to align the input source to) More... | |
| PointCloudTargetConstPtr const | getInputTarget () |
| Get a pointer to the input point cloud dataset target. More... | |
| void | setPointRepresentation (const PointRepresentationConstPtr &point_representation) |
| Provide a boost shared pointer to the PointRepresentation to be used when comparing points. More... | |
| virtual void | determineReciprocalCorrespondences (pcl::Correspondences &correspondences) |
| Determine the correspondences between input and target cloud. More... | |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Provide a pointer to the input dataset. More... | |
| PointCloudConstPtr const | getInputCloud () |
| Get a pointer to the input point cloud dataset. More... | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (const IndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... | |
| void | setIndices (size_t row_start, size_t col_start, size_t nb_rows, size_t nb_cols) |
| Set the indices for the points laying within an interest region of the point cloud. More... | |
| IndicesPtr const | getIndices () |
| Get a pointer to the vector of indices used. More... | |
| const PointSource & | operator[] (size_t pos) |
| Override PointCloud operator[] to shorten code. More... | |
CorrespondenceEstimationNormalShooting computes correspondences as points in the target cloud which have minimum distance to normals computed on the input cloud
Definition at line 55 of file correspondence_estimation_normal_shooting.h.
| typedef pcl::KdTree<PointTarget> pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::KdTree |
Definition at line 64 of file correspondence_estimation_normal_shooting.h.
| typedef pcl::KdTree<PointTarget>::Ptr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::KdTreePtr |
Definition at line 65 of file correspondence_estimation_normal_shooting.h.
| typedef pcl::PointCloud<NormalT>::Ptr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::NormalsPtr |
Definition at line 76 of file correspondence_estimation_normal_shooting.h.
|
inherited |
Definition at line 74 of file pcl_base.h.
|
inherited |
Definition at line 76 of file pcl_base.h.
|
inherited |
Definition at line 75 of file pcl_base.h.
| typedef pcl::PointCloud<PointSource> pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudSource |
Definition at line 67 of file correspondence_estimation_normal_shooting.h.
| typedef PointCloudSource::ConstPtr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudSourceConstPtr |
Definition at line 69 of file correspondence_estimation_normal_shooting.h.
| typedef PointCloudSource::Ptr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudSourcePtr |
Definition at line 68 of file correspondence_estimation_normal_shooting.h.
| typedef pcl::PointCloud<PointTarget> pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudTarget |
Definition at line 71 of file correspondence_estimation_normal_shooting.h.
| typedef PointCloudTarget::ConstPtr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudTargetConstPtr |
Definition at line 73 of file correspondence_estimation_normal_shooting.h.
| typedef PointCloudTarget::Ptr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointCloudTargetPtr |
Definition at line 72 of file correspondence_estimation_normal_shooting.h.
|
inherited |
Definition at line 79 of file pcl_base.h.
|
inherited |
Definition at line 78 of file pcl_base.h.
| typedef KdTree::PointRepresentationConstPtr pcl::registration::CorrespondenceEstimationNormalShooting< PointSource, PointTarget, NormalT >::PointRepresentationConstPtr |
Definition at line 75 of file correspondence_estimation_normal_shooting.h.
|
inline |
Empty constructor.
Definition at line 79 of file correspondence_estimation_normal_shooting.h.
|
virtual |
Determine the correspondences between input and target cloud.
| [out] | correspondences | the found correspondences (index of query point, index of target point, distance) |
| [in] | max_distance | maximum distance between the normal on the source point cloud and the corresponding point in the target point cloud |
Reimplemented from pcl::registration::CorrespondenceEstimation< PointSource, PointTarget >.
Definition at line 45 of file correspondence_estimation_normal_shooting.hpp.
|
virtualinherited |
Determine the correspondences between input and target cloud.
| [out] | correspondences | the found correspondences (index of query and target point, distance) |
Definition at line 107 of file correspondence_estimation.hpp.
|
inlineinherited |
Get a pointer to the vector of indices used.
Definition at line 190 of file pcl_base.h.
|
inlineinherited |
Get a pointer to the input point cloud dataset.
Definition at line 107 of file pcl_base.h.
|
inlineinherited |
Get a pointer to the input point cloud dataset target.
Definition at line 101 of file correspondence_estimation.h.
|
inline |
Get the number of nearest neighbours considered in the target point cloud for computing correspondence.
Definition at line 113 of file correspondence_estimation_normal_shooting.h.
|
inline |
Get the normals of the input point cloud.
Definition at line 93 of file correspondence_estimation_normal_shooting.h.
|
inlineinherited |
Override PointCloud operator[] to shorten code.
| pos | position in indices_ vector |
Definition at line 197 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 113 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 124 of file pcl_base.h.
|
inlineinherited |
Provide a pointer to the vector of indices that represents the input data.
| indices | a pointer to the vector of indices that represents the input data. |
Definition at line 135 of file pcl_base.h.
|
inlineinherited |
Set the indices for the points laying within an interest region of the point cloud.
| row_start | the offset on rows |
| col_start | the offset on columns |
| nb_rows | the number of rows to be considered row_start included |
| nb_cols | the number of columns to be considered col_start included |
Definition at line 151 of file pcl_base.h.
|
inlinevirtualinherited |
Provide a pointer to the input dataset.
| cloud | the const boost shared pointer to a PointCloud message |
Definition at line 103 of file pcl_base.h.
|
inlinevirtualinherited |
Provide a pointer to the input target (e.g., the point cloud that we want to align the input source to)
| [in] | cloud | the input point cloud target |
Definition at line 46 of file correspondence_estimation.hpp.
|
inline |
Set the number of nearest neighbours to be considered in the target point cloud.
| [in] | k | the number of nearest neighbours to be considered |
Definition at line 108 of file correspondence_estimation_normal_shooting.h.
|
inlineinherited |
Provide a boost shared pointer to the PointRepresentation to be used when comparing points.
| [in] | point_representation | the PointRepresentation to be used by the k-D tree |
Definition at line 107 of file correspondence_estimation.h.
|
inline |
Set the normals computed on the input point cloud.
| [in] | normals | the normals computed for the input cloud |
Definition at line 88 of file correspondence_estimation_normal_shooting.h.
1.8.3.1