Point Cloud Library (PCL)
1.11.1
|
Go to the documentation of this file.
40 #include <pcl/pcl_base.h>
59 getAngle3D (
const Eigen::Vector4f &v1,
const Eigen::Vector4f &v2,
const bool in_degree =
false);
69 getAngle3D (
const Eigen::Vector3f &v1,
const Eigen::Vector3f &v2,
const bool in_degree =
false);
79 getMeanStd (
const std::vector<float> &values,
double &mean,
double &stddev);
88 template <
typename Po
intT>
inline void
90 Eigen::Vector4f &max_pt,
Indices &indices);
98 template<
typename Po
intT>
inline void
108 template<
typename Po
intT>
inline void
110 const Eigen::Vector4f &pivot_pt, Eigen::Vector4f &max_pt);
118 template <
typename Po
intT>
inline void
127 template <
typename Po
intT>
inline void
129 Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt);
138 template <
typename Po
intT>
inline void
140 Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt);
149 template <
typename Po
intT>
inline void
151 Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt);
160 template <
typename Po
intT>
inline double
170 template <
typename Po
intT>
inline void
171 getMinMax (
const PointT &histogram,
int len,
float &min_p,
float &max_p);
178 template<
typename Po
intT>
inline float
191 float &min_p,
float &max_p);
200 getMeanStdDev (
const std::vector<float> &values,
double &mean,
double &stddev);
204 #include <pcl/common/impl/common.hpp>
void getPointsInBox(const pcl::PointCloud< PointT > &cloud, Eigen::Vector4f &min_pt, Eigen::Vector4f &max_pt, Indices &indices)
Get a set of points residing in a box given its bounds.
void getMeanStd(const std::vector< float > &values, double &mean, double &stddev)
Compute both the mean and the standard deviation of an array of values.
double getCircumcircleRadius(const PointT &pa, const PointT &pb, const PointT &pc)
Compute the radius of a circumscribed circle for a triangle formed of three points pa,...
PCL_EXPORTS void getMeanStdDev(const std::vector< float > &values, double &mean, double &stddev)
Compute both the mean and the standard deviation of an array of values.
PointCloud represents the base class in PCL for storing collections of 3D points.
A point structure representing Euclidean xyz coordinates, and the RGB color.
double getAngle3D(const Eigen::Vector4f &v1, const Eigen::Vector4f &v2, const bool in_degree=false)
Compute the smallest angle between two 3D vectors in radians (default) or degree.
float calculatePolygonArea(const pcl::PointCloud< PointT > &polygon)
Calculate the area of a polygon given a point cloud that defines the polygon.
void getMaxDistance(const pcl::PointCloud< PointT > &cloud, const Eigen::Vector4f &pivot_pt, Eigen::Vector4f &max_pt)
Get the point at maximum distance from a given point and a given pointcloud.
IndicesAllocator<> Indices
Type used for indices in PCL.
void getMinMax3D(const pcl::PointCloud< PointT > &cloud, PointT &min_pt, PointT &max_pt)
Get the minimum and maximum values on each of the 3 (x-y-z) dimensions in a given pointcloud.
void getMinMax(const PointT &histogram, int len, float &min_p, float &max_p)
Get the minimum and maximum values on a point histogram.