On this page
CorrespondenceRejector represents the base class for correspondence rejection methods More...
#include <pcl/registration/correspondence_rejection.h>
Public Types |
|
using | Ptr = shared_ptr< CorrespondenceRejector > |
using | ConstPtr = shared_ptr< const CorrespondenceRejector > |
Public Member Functions |
|
CorrespondenceRejector ()=default | |
Empty constructor. More... |
|
virtual | ~CorrespondenceRejector ()=default |
Empty destructor. More... |
|
virtual void | setInputCorrespondences (const CorrespondencesConstPtr &correspondences) |
Provide a pointer to the vector of the input correspondences. More... |
|
CorrespondencesConstPtr | getInputCorrespondences () |
Get a pointer to the vector of the input correspondences. More... |
|
void | getCorrespondences (pcl::Correspondences &correspondences) |
Run correspondence rejection. More... |
|
virtual void | getRemainingCorrespondences (const pcl::Correspondences &original_correspondences, pcl::Correspondences &remaining_correspondences)=0 |
Get a list of valid correspondences after rejection from the original set of correspondences. More... |
|
void | getRejectedQueryIndices (const pcl::Correspondences &correspondences, pcl::Indices &indices) |
Determine the indices of query points of correspondences that have been rejected, i.e., the difference between the input correspondences (set via setInputCorrespondences) and the given correspondence vector. More... |
|
const std::string & | getClassName () const |
Get a string representation of the name of this class. More... |
|
virtual bool | requiresSourcePoints () const |
See if this rejector requires source points. More... |
|
virtual void | setSourcePoints (pcl::PCLPointCloud2::ConstPtr) |
Abstract method for setting the source cloud. More... |
|
virtual bool | requiresSourceNormals () const |
See if this rejector requires source normals. More... |
|
virtual void | setSourceNormals (pcl::PCLPointCloud2::ConstPtr) |
Abstract method for setting the source normals. More... |
|
virtual bool | requiresTargetPoints () const |
See if this rejector requires a target cloud. More... |
|
virtual void | setTargetPoints (pcl::PCLPointCloud2::ConstPtr) |
Abstract method for setting the target cloud. More... |
|
virtual bool | requiresTargetNormals () const |
See if this rejector requires target normals. More... |
|
virtual void | setTargetNormals (pcl::PCLPointCloud2::ConstPtr) |
Abstract method for setting the target normals. More... |
|
Protected Member Functions |
|
virtual void | applyRejection (Correspondences &correspondences)=0 |
Abstract rejection method. More... |
|
Protected Attributes |
|
std::string | rejection_name_ |
The name of the rejection method. More... |
|
CorrespondencesConstPtr | input_correspondences_ |
The input correspondences. More... |
|
Detailed Description
CorrespondenceRejector represents the base class for correspondence rejection methods
Definition at line 54 of file correspondence_rejection.h.
Member Typedef Documentation
ConstPtr
using pcl::registration::CorrespondenceRejector::ConstPtr = shared_ptr<const CorrespondenceRejector> |
Definition at line 57 of file correspondence_rejection.h.
Ptr
using pcl::registration::CorrespondenceRejector::Ptr = shared_ptr<CorrespondenceRejector> |
Definition at line 56 of file correspondence_rejection.h.
Constructor & Destructor Documentation
CorrespondenceRejector()
|
default |
Empty constructor.
~CorrespondenceRejector()
|
virtualdefault |
Empty destructor.
Member Function Documentation
applyRejection()
|
protectedpure virtual |
Abstract rejection method.
Implemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorOneToOne, pcl::registration::CorrespondenceRejectorMedianDistance, pcl::registration::CorrespondenceRejectorFeatures, pcl::registration::CorrespondenceRejectorDistance, and pcl::registration::CorrespondenceRejectorSampleConsensus2D< PointT >.
Referenced by getCorrespondences().
getClassName()
|
inline |
Get a string representation of the name of this class.
Definition at line 131 of file correspondence_rejection.h.
References rejection_name_.
Referenced by getRejectedQueryIndices(), setSourceNormals(), setSourcePoints(), setTargetNormals(), and setTargetPoints().
getCorrespondences()
|
inline |
Run correspondence rejection.
- Parameters
-
[out] correspondences Vector of correspondences that have not been rejected.
Definition at line 87 of file correspondence_rejection.h.
References applyRejection(), and input_correspondences_.
getInputCorrespondences()
|
inline |
Get a pointer to the vector of the input correspondences.
- Returns
- correspondences the const shared pointer to a correspondence vector
Definition at line 78 of file correspondence_rejection.h.
References input_correspondences_.
getRejectedQueryIndices()
|
inline |
Determine the indices of query points of correspondences that have been rejected, i.e., the difference between the input correspondences (set via setInputCorrespondences) and the given correspondence vector.
- Parameters
-
[in] correspondences Vector of correspondences after rejection [out] indices Vector of query point indices of those correspondences that have been rejected.
Definition at line 116 of file correspondence_rejection.h.
References getClassName(), pcl::getRejectedQueryIndices(), and input_correspondences_.
getRemainingCorrespondences()
|
inlinepure virtual |
Get a list of valid correspondences after rejection from the original set of correspondences.
Pure virtual. Compared to getCorrespondences this function is stateless, i.e., input correspondences do not need to be provided beforehand, but are directly provided in the function call.
- Parameters
-
[in] original_correspondences the set of initial correspondences given [out] remaining_correspondences the resultant filtered set of remaining correspondences
Implemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorOneToOne, pcl::registration::CorrespondenceRejectorMedianDistance, pcl::registration::CorrespondenceRejectorFeatures, pcl::registration::CorrespondenceRejectorDistance, and pcl::registration::CorrespondenceRejectorSampleConsensus2D< PointT >.
requiresSourceNormals()
|
inlinevirtual |
See if this rejector requires source normals.
Reimplemented in pcl::registration::CorrespondenceRejectorSurfaceNormal.
Definition at line 154 of file correspondence_rejection.h.
requiresSourcePoints()
|
inlinevirtual |
See if this rejector requires source points.
Reimplemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorMedianDistance, and pcl::registration::CorrespondenceRejectorDistance.
Definition at line 138 of file correspondence_rejection.h.
requiresTargetNormals()
|
inlinevirtual |
See if this rejector requires target normals.
Reimplemented in pcl::registration::CorrespondenceRejectorSurfaceNormal.
Definition at line 185 of file correspondence_rejection.h.
requiresTargetPoints()
|
inlinevirtual |
See if this rejector requires a target cloud.
Reimplemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorMedianDistance, and pcl::registration::CorrespondenceRejectorDistance.
Definition at line 169 of file correspondence_rejection.h.
setInputCorrespondences()
|
inlinevirtual |
Provide a pointer to the vector of the input correspondences.
- Parameters
-
[in] correspondences the const shared pointer to a correspondence vector
Definition at line 69 of file correspondence_rejection.h.
References input_correspondences_.
setSourceNormals()
|
inlinevirtual |
Abstract method for setting the source normals.
Reimplemented in pcl::registration::CorrespondenceRejectorSurfaceNormal.
Definition at line 161 of file correspondence_rejection.h.
References getClassName().
setSourcePoints()
|
inlinevirtual |
Abstract method for setting the source cloud.
Reimplemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorMedianDistance, and pcl::registration::CorrespondenceRejectorDistance.
Definition at line 145 of file correspondence_rejection.h.
References getClassName().
setTargetNormals()
|
inlinevirtual |
Abstract method for setting the target normals.
Reimplemented in pcl::registration::CorrespondenceRejectorSurfaceNormal.
Definition at line 192 of file correspondence_rejection.h.
References getClassName().
setTargetPoints()
|
inlinevirtual |
Abstract method for setting the target cloud.
Reimplemented in pcl::registration::CorrespondenceRejectorVarTrimmed, pcl::registration::CorrespondenceRejectorSurfaceNormal, pcl::registration::CorrespondenceRejectorSampleConsensus< PointT >, pcl::registration::CorrespondenceRejectorPoly< SourceT, TargetT >, pcl::registration::CorrespondenceRejectionOrganizedBoundary, pcl::registration::CorrespondenceRejectorMedianDistance, and pcl::registration::CorrespondenceRejectorDistance.
Definition at line 176 of file correspondence_rejection.h.
References getClassName().
Member Data Documentation
input_correspondences_
|
protected |
The input correspondences.
Definition at line 204 of file correspondence_rejection.h.
Referenced by getCorrespondences(), getInputCorrespondences(), getRejectedQueryIndices(), and setInputCorrespondences().
rejection_name_
|
protected |
The name of the rejection method.
Definition at line 201 of file correspondence_rejection.h.
Referenced by getClassName().
The documentation for this class was generated from the following file:
- pcl/registration/correspondence_rejection.h
© 2009–2012, Willow Garage, Inc.
© 2012–, Open Perception, Inc.
Licensed under the BSD License.
https://pointclouds.org/documentation/classpcl_1_1registration_1_1_correspondence_rejector.html