|
| 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. More...
|
| |
| | ~ISSKeypoint3D () |
| | Destructor. More...
|
| |
| void | setSalientRadius (double salient_radius) |
| | Set the radius of the spherical neighborhood used to compute the scatter matrix. More...
|
| |
| void | setNonMaxRadius (double non_max_radius) |
| | Set the radius for the application of the non maxima supression algorithm. More...
|
| |
| void | setNormalRadius (double normal_radius) |
| | Set the radius used for the estimation of the surface normals of the input cloud. More...
|
| |
| void | setBorderRadius (double border_radius) |
| | Set the radius used for the estimation of the boundary points. More...
|
| |
| void | setThreshold21 (double gamma_21) |
| | Set the upper bound on the ratio between the second and the first eigenvalue. More...
|
| |
| void | setThreshold32 (double gamma_32) |
| | Set the upper bound on the ratio between the third and the second eigenvalue. More...
|
| |
| void | setMinNeighbors (int min_neighbors) |
| | Set the minimum number of neighbors that has to be found while applying the non maxima suppression algorithm. More...
|
| |
| void | setNormals (const PointCloudNConstPtr &normals) |
| | Set the normals if pre-calculated normals are available. More...
|
| |
| void | setAngleThreshold (float angle) |
| | Set the decision boundary (angle threshold) that marks points as boundary or regular. More...
|
| |
| void | setNumberOfThreads (unsigned int nr_threads=0) |
| | Initialize the scheduler and set the number of threads to use. More...
|
| |
| | Keypoint () |
| |
| | Keypoint () |
| | Empty constructor. More...
|
| |
| 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 () |
| | Empty destructor. More...
|
| |
| virtual void | setSearchSurface (const PointCloudInConstPtr &cloud) |
| | Provide a pointer to the input dataset that we need to estimate features at every point for. More...
|
| |
| PointCloudInConstPtr | getSearchSurface () |
| | Get a pointer to the surface point cloud dataset. More...
|
| |
| void | setSearchMethod (const KdTreePtr &tree) |
| | Provide a pointer to the search object. More...
|
| |
| KdTreePtr | getSearchMethod () |
| | Get a pointer to the search method used. More...
|
| |
| double | getSearchParameter () |
| | Get the internal search parameter. More...
|
| |
| void | setKSearch (int k) |
| | Set the number of k nearest neighbors to use for the feature estimation. More...
|
| |
| int | getKSearch () |
| | get the number of k nearest neighbors used for the feature estimation. More...
|
| |
| void | setRadiusSearch (double radius) |
| | Set the sphere radius that is to be used for determining the nearest neighbors used for the key point detection. More...
|
| |
| double | getRadiusSearch () |
| | Get the sphere radius used for determining the neighbors. More...
|
| |
| 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 () More...
|
| |
| 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. More...
|
| |
| | PCLBase () |
| | Empty constructor. More...
|
| |
| | PCLBase (const PCLBase &base) |
| | Copy constructor. More...
|
| |
| virtual | ~PCLBase ()=default |
| | Destructor. More...
|
| |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| | Provide a pointer to the input dataset. More...
|
| |
| PointCloudConstPtr const | getInputCloud () const |
| | Get a pointer to the input point cloud dataset. More...
|
| |
| virtual void | setIndices (const IndicesPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| virtual void | setIndices (const IndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| virtual void | setIndices (const PointIndicesConstPtr &indices) |
| | Provide a pointer to the vector of indices that represents the input data. More...
|
| |
| 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. More...
|
| |
| IndicesPtr | getIndices () |
| | Get a pointer to the vector of indices used. More...
|
| |
| IndicesConstPtr const | getIndices () const |
| | Get a pointer to the vector of indices used. More...
|
| |
| const PointInT & | operator[] (std::size_t pos) const |
| | Override PointCloud operator[] to shorten code. More...
|
| |
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 supression 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.
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.