#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/subgraph.hpp>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/PointIndices.h>
Go to the source code of this file.
|
#define | PCG pcl::graph::point_cloud_graph<P, OEL, D, VP, EP, EL> |
|
#define | PCG_PARAMS typename P, typename OEL, typename D, typename VP, typename EP, typename EL |
|
|
template<PCG_PARAMS > |
pcl::PointIndices::Ptr | indices (const boost::subgraph< PCG > &g) |
| Retrieve the indices of the points of the point cloud stored in a point cloud (sub)graph that actually belong to the (sub)graph. More...
|
|
template<PCG_PARAMS > |
pcl::PointIndices::Ptr | indices (const PCG &g) |
| Retrieve the indices of the points of the point cloud stored in a point cloud graph that actually belong to the graph. More...
|
|
template<PCG_PARAMS > |
pcl::PointCloud< P >::Ptr | point_cloud (boost::subgraph< PCG > &g) |
| Retrieve the point cloud stored in a point cloud (sub)graph. More...
|
|
template<PCG_PARAMS > |
pcl::PointCloud< P >::ConstPtr | point_cloud (const boost::subgraph< PCG > &g) |
| Retrieve the point cloud stored in a point cloud (sub)graph (const version). More...
|
|
template<PCG_PARAMS > |
pcl::PointCloud< P >::ConstPtr | point_cloud (const PCG &g) |
| Retrieve the point cloud stored in a point cloud graph (const version). More...
|
|
template<PCG_PARAMS > |
pcl::PointCloud< P >::Ptr | point_cloud (PCG &g) |
| Retrieve the point cloud stored in a point cloud graph. More...
|
|
template<typename Directed , typename Vertex , PCG_PARAMS > |
Vertex | source (const detail::edge_base< Directed, Vertex > &e, const PCG &) |
|
template<typename Directed , typename Vertex , PCG_PARAMS > |
Vertex | target (const detail::edge_base< Directed, Vertex > &e, const PCG &) |
|
◆ PCG
◆ PCG_PARAMS
#define PCG_PARAMS typename P, typename OEL, typename D, typename VP, typename EP, typename EL |