#include <pcl/filters/filter.h>
#include <map>
#include <boost/unordered_map.hpp>
#include <boost/fusion/sequence/intrinsic/at_key.hpp>
Go to the source code of this file.
|
| PCL_EXPORTS void | pcl::getMinMax3D (const sensor_msgs::PointCloud2ConstPtr &cloud, int x_idx, int y_idx, int z_idx, Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt) |
| | Obtain the maximum and minimum points in 3D from a given point cloud. More...
|
| |
| PCL_EXPORTS void | pcl::getMinMax3D (const sensor_msgs::PointCloud2ConstPtr &cloud, int x_idx, int y_idx, int z_idx, const std::string &distance_field_name, float min_distance, float max_distance, Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt, bool limit_negative=false) |
| | Obtain the maximum and minimum points in 3D from a given point cloud. More...
|
| |
| Eigen::MatrixXi | pcl::getHalfNeighborCellIndices () |
| | Get the relative cell indices of the "upper half" 13 neighbors. More...
|
| |
| Eigen::MatrixXi | pcl::getAllNeighborCellIndices () |
| | Get the relative cell indices of all the 26 neighbors. More...
|
| |
| template<typename PointT > |
| void | pcl::getMinMax3D (const typename pcl::PointCloud< PointT >::ConstPtr &cloud, const std::string &distance_field_name, float min_distance, float max_distance, Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt, bool limit_negative=false) |
| | Get the minimum and maximum values on each of the 3 (x-y-z) dimensions in a given pointcloud, without considering points outside of a distance threshold from the laser origin. More...
|
| |