|
| using | Ptr = shared_ptr< ISSKeypoint3D< PointInT, PointOutT, NormalT > > |
| |
| using | ConstPtr = shared_ptr< const ISSKeypoint3D< PointInT, PointOutT, NormalT > > |
| |
| using | PointCloudIn = typename Keypoint< PointInT, PointOutT >::PointCloudIn |
| |
| using | PointCloudOut = typename Keypoint< PointInT, PointOutT >::PointCloudOut |
| |
| using | PointCloudN = pcl::PointCloud< NormalT > |
| |
| using | PointCloudNPtr = typename PointCloudN::Ptr |
| |
| using | PointCloudNConstPtr = typename PointCloudN::ConstPtr |
| |
| using | OctreeSearchIn = pcl::octree::OctreePointCloudSearch< PointInT > |
| |
| using | OctreeSearchInPtr = typename OctreeSearchIn::Ptr |
| |
| using | Ptr = shared_ptr< Keypoint< PointInT, PointOutT > > |
| |
| using | ConstPtr = shared_ptr< const Keypoint< PointInT, PointOutT > > |
| |
| using | BaseClass = PCLBase< PointInT > |
| |
| using | KdTree = pcl::search::Search< PointInT > |
| |
| using | KdTreePtr = typename KdTree::Ptr |
| |
| using | PointCloudIn = pcl::PointCloud< PointInT > |
| |
| using | PointCloudInPtr = typename PointCloudIn::Ptr |
| |
| using | PointCloudInConstPtr = typename PointCloudIn::ConstPtr |
| |
| using | PointCloudOut = pcl::PointCloud< PointOutT > |
| |
| using | SearchMethod = std::function< int(pcl::index_t, double, pcl::Indices &, std::vector< float > &)> |
| |
| using | SearchMethodSurface = std::function< int(const PointCloudIn &cloud, pcl::index_t index, double, pcl::Indices &, std::vector< float > &)> |
| |
| using | PointCloud = pcl::PointCloud< PointInT > |
| |
| using | PointCloudPtr = typename PointCloud::Ptr |
| |
| using | PointCloudConstPtr = typename PointCloud::ConstPtr |
| |
| using | PointIndicesPtr = PointIndices::Ptr |
| |
| using | PointIndicesConstPtr = PointIndices::ConstPtr |
| |
|
| | ISSKeypoint3D (double salient_radius=0.0001) |
| | Constructor.
|
| |
| | ~ISSKeypoint3D () override |
| | Destructor.
|
| |
| void | setSalientRadius (double salient_radius) |
| | Set the radius of the spherical neighborhood used to compute the scatter matrix.
|
| |
| void | setNonMaxRadius (double non_max_radius) |
| | Set the radius for the application of the non maxima suppression algorithm.
|
| |
| void | setNormalRadius (double normal_radius) |
| | Set the radius used for the estimation of the surface normals of the input cloud.
|
| |
| void | setBorderRadius (double border_radius) |
| | Set the radius used for the estimation of the boundary points.
|
| |
| void | setThreshold21 (double gamma_21) |
| | Set the upper bound on the ratio between the second and the first eigenvalue.
|
| |
| void | setThreshold32 (double gamma_32) |
| | Set the upper bound on the ratio between the third and the second eigenvalue.
|
| |
| void | setMinNeighbors (int min_neighbors) |
| | Set the minimum number of neighbors that has to be found while applying the non maxima suppression algorithm.
|
| |
| void | setNormals (const PointCloudNConstPtr &normals) |
| | Set the normals if pre-calculated normals are available.
|
| |
| void | setAngleThreshold (float angle) |
| | Set the decision boundary (angle threshold) that marks points as boundary or regular.
|
| |
| void | setNumberOfThreads (unsigned int nr_threads=0) |
| | Initialize the scheduler and set the number of threads to use.
|
| |
| | Keypoint ()=default |
| |
| | Keypoint () |
| | Empty constructor.
|
| |
| void | harrisCorner (PointInT &output, PointInT &input, const float sigma_d, const float sigma_i, const float alpha, const float thresh) |
| |
| void | hessianBlob (PointInT &output, PointInT &input, const float sigma, bool SCALE) |
| |
| void | hessianBlob (PointInT &output, PointInT &input, const float start_scale, const float scaling_factor, const int num_scales) |
| |
| void | imageElementMultiply (PointInT &output, PointInT &input1, PointInT &input2) |
| |
| | ~Keypoint () override=default |
| | Empty destructor.
|
| |
| virtual void | setSearchSurface (const PointCloudInConstPtr &cloud) |
| | Provide a pointer to the input dataset that we need to estimate features at every point for.
|
| |
| PointCloudInConstPtr | getSearchSurface () |
| | Get a pointer to the surface point cloud dataset.
|
| |
| void | setSearchMethod (const KdTreePtr &tree) |
| | Provide a pointer to the search object.
|
| |
| KdTreePtr | getSearchMethod () |
| | Get a pointer to the search method used.
|
| |
| double | getSearchParameter () |
| | Get the internal search parameter.
|
| |
| void | setKSearch (int k) |
| | Set the number of k nearest neighbors to use for the feature estimation.
|
| |
| int | getKSearch () |
| | get the number of k nearest neighbors used for the feature estimation.
|
| |
| void | setRadiusSearch (double radius) |
| | Set the sphere radius that is to be used for determining the nearest neighbors used for the key point detection.
|
| |
| double | getRadiusSearch () |
| | Get the sphere radius used for determining the neighbors.
|
| |
| pcl::PointIndicesConstPtr | getKeypointsIndices () |
| |
| void | compute (PointCloudOut &output) |
| | Base method for key point detection for all points given in <setInputCloud (), setIndices ()> using the surface in setSearchSurface () and the spatial locator in setSearchMethod ()
|
| |
| int | searchForNeighbors (pcl::index_t index, double parameter, pcl::Indices &indices, std::vector< float > &distances) const |
| | Search for k-nearest neighbors using the spatial locator from setSearchmethod, and the given surface from setSearchSurface.
|
| |
| | PCLBase () |
| | Empty constructor.
|
| |
| | PCLBase (const PCLBase &base) |
| | Copy constructor.
|
| |
| virtual | ~PCLBase ()=default |
| | Destructor.
|
| |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| | Provide a pointer to the input dataset.
|
| |
| PointCloudConstPtr const | getInputCloud () const |
| | Get a pointer to the input point cloud dataset.
|
| |
| virtual void | setIndices (const IndicesPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data.
|
| |
| virtual void | setIndices (const IndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data.
|
| |
| virtual void | setIndices (const PointIndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data.
|
| |
| virtual void | setIndices (std::size_t row_start, std::size_t col_start, std::size_t nb_rows, std::size_t nb_cols) |
| | Set the indices for the points laying within an interest region of the point cloud.
|
| |
| IndicesPtr | getIndices () |
| | Get a pointer to the vector of indices used.
|
| |
| IndicesConstPtr const | getIndices () const |
| | Get a pointer to the vector of indices used.
|
| |
| const PointInT & | operator[] (std::size_t pos) const |
| | Override PointCloud operator[] to shorten code.
|
| |
|
| double | salient_radius_ |
| | The radius of the spherical neighborhood used to compute the scatter matrix.
|
| |
| double | non_max_radius_ {0.0} |
| | The non maxima suppression radius.
|
| |
| double | normal_radius_ {0.0} |
| | The radius used to compute the normals of the input cloud.
|
| |
| double | border_radius_ {0.0} |
| | The radius used to compute the boundary points of the input cloud.
|
| |
| double | gamma_21_ {0.975} |
| | The upper bound on the ratio between the second and the first eigenvalue returned by the EVD.
|
| |
| double | gamma_32_ {0.975} |
| | The upper bound on the ratio between the third and the second eigenvalue returned by the EVD.
|
| |
| double * | third_eigen_value_ {nullptr} |
| | Store the third eigen value associated to each point in the input cloud.
|
| |
| bool * | edge_points_ {nullptr} |
| | Store the information about the boundary points of the input cloud.
|
| |
| int | min_neighbors_ {5} |
| | Minimum number of neighbors that has to be found while applying the non maxima suppression algorithm.
|
| |
| PointCloudNConstPtr | normals_ |
| | The cloud of normals related to the input surface.
|
| |
| float | angle_threshold_ |
| | The decision boundary (angle threshold) that marks points as boundary or regular.
|
| |
| unsigned int | threads_ {0} |
| | The number of threads that has to be used by the scheduler.
|
| |
| std::string | name_ |
| | The key point detection method's name.
|
| |
| SearchMethod | search_method_ |
| | The search method template for indices.
|
| |
| SearchMethodSurface | search_method_surface_ |
| | The search method template for points.
|
| |
| PointCloudInConstPtr | surface_ |
| | An input point cloud describing the surface that is to be used for nearest neighbors estimation.
|
| |
| KdTreePtr | tree_ |
| | A pointer to the spatial search object.
|
| |
| double | search_parameter_ |
| | The actual search parameter (casted from either search_radius_ or k_).
|
| |
| double | search_radius_ |
| | The nearest neighbors search radius for each point.
|
| |
| int | k_ |
| | The number of K nearest neighbors to use for each point.
|
| |
| pcl::PointIndicesPtr | keypoints_indices_ |
| | Indices of the keypoints in the input cloud.
|
| |
| PointCloudConstPtr | input_ |
| | The input point cloud dataset.
|
| |
| IndicesPtr | indices_ |
| | A pointer to the vector of point indices to use.
|
| |
| bool | use_indices_ |
| | Set to true if point indices are used.
|
| |
| bool | fake_indices_ |
| | If no set of indices are given, we construct a set of fake indices that mimic the input PointCloud.
|
| |
template<typename PointInT, typename PointOutT, typename
NormalT = pcl::Normal>
class pcl::ISSKeypoint3D< PointInT, PointOutT, NormalT >
ISSKeypoint3D detects the Intrinsic Shape Signatures keypoints for a given point cloud.
This class is based on a particular implementation made by Federico Tombari and Samuele Salti and it has been explicitly adapted to PCL.
For more information about the original ISS detector, see:
- Yu Zhong, “Intrinsic shape signatures: A shape descriptor for 3D object recognition,” Computer Vision Workshops (ICCV Workshops), 2009 IEEE 12th International Conference on , vol., no., pp.689-696, Sept. 27 2009-Oct. 4 2009
Code example:
double model_resolution;
iss_detector.
compute (*model_keypoints);
ISSKeypoint3D detects the Intrinsic Shape Signatures keypoints for a given point cloud.
void setNumberOfThreads(unsigned int nr_threads=0)
Initialize the scheduler and set the number of threads to use.
void setSalientRadius(double salient_radius)
Set the radius of the spherical neighborhood used to compute the scatter matrix.
void setThreshold21(double gamma_21)
Set the upper bound on the ratio between the second and the first eigenvalue.
void setMinNeighbors(int min_neighbors)
Set the minimum number of neighbors that has to be found while applying the non maxima suppression al...
void setThreshold32(double gamma_32)
Set the upper bound on the ratio between the third and the second eigenvalue.
void setNonMaxRadius(double non_max_radius)
Set the radius for the application of the non maxima suppression algorithm.
void compute(PointCloudOut &output)
Base method for key point detection for all points given in <setInputCloud (), setIndices ()> using t...
void setSearchMethod(const KdTreePtr &tree)
Provide a pointer to the search object.
virtual void setInputCloud(const PointCloudConstPtr &cloud)
Provide a pointer to the input dataset.
PointCloud represents the base class in PCL for storing collections of 3D points.
shared_ptr< PointCloud< PointT > > Ptr
search::KdTree is a wrapper class which inherits the pcl::KdTree class for performing search function...
shared_ptr< KdTree< PointT, Tree > > Ptr
- Author
- Gioia Ballin
Definition at line 85 of file iss_3d.h.