|
| template<typename PointT > |
| void | pcl::transformPointCloud (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Affine3f &transform) |
| | Apply an affine transform defined by an Eigen Transform. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloud (const pcl::PointCloud< PointT > &cloud_in, const std::vector< int > &indices, pcl::PointCloud< PointT > &cloud_out, const Eigen::Affine3f &transform) |
| | Apply an affine transform defined by an Eigen Transform. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloudWithNormals (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Affine3f &transform) |
| | Transform a point cloud and rotate its normals using an Eigen transform. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloud (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Matrix4f &transform) |
| | Apply an affine transform defined by an Eigen Transform. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloudWithNormals (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Matrix4f &transform) |
| | Transform a point cloud and rotate its normals using an Eigen transform. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloud (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Vector3f &offset, const Eigen::Quaternionf &rotation) |
| | Apply a rigid transform defined by a 3D offset and a quaternion. More...
|
| |
| template<typename PointT > |
| void | pcl::transformPointCloudWithNormals (const pcl::PointCloud< PointT > &cloud_in, pcl::PointCloud< PointT > &cloud_out, const Eigen::Vector3f &offset, const Eigen::Quaternionf &rotation) |
| | Transform a point cloud and rotate its normals using an Eigen transform. More...
|
| |
| template<typename PointT > |
| PointT | pcl::transformPoint (const PointT &point, const Eigen::Affine3f &transform) |
| | Transform a point with members x,y,z. More...
|
| |