Transformation functions for 3D objects. More...
Static Public Member Functions | |
| static SparsePointCloud | Transform (this PointCloud pc, AffineMatrix3D affineTransformation) |
| Creates a new point cloud which is a copy of this point cloud, with all points being transformed by the given affineTransformation . | |
| static void | Transform (this PointCloud pc, AffineMatrix3D affineTransformation, SparsePointCloud target) |
| Transforms all points of this point cloud with the given affineTransformation and stores them in the target . | |
| static SparsePointCloud | Transform (this PointCloud pc, Matrix3DH transformation) |
| Creates a new point cloud which is a copy of this point cloud, with all points being transformed by the given transformation . | |
| static void | Transform (this PointCloud pc, Matrix3DH transformation, SparsePointCloud target) |
| Transforms all points of this point cloud with the given transformation and stores them in the target . | |
Transformation functions for 3D objects.
|
static |
Creates a new point cloud which is a copy of this point cloud, with all points being transformed by the given affineTransformation .
| pc | PointCloud to transform. |
| affineTransformation | Transformation matrix to apply. |
| CvbException | When creating the transformed point cloud failed. |
|
static |
Transforms all points of this point cloud with the given affineTransformation and stores them in the target .
| pc | PointCloud to transform. |
| affineTransformation | Transformation matrix to apply. |
| target | Point cloud to store the transformed points in. |
| CvbException | When transforming the point cloud failed. |
|
static |
Creates a new point cloud which is a copy of this point cloud, with all points being transformed by the given transformation .
| pc | PointCloud to transform. |
| transformation | Homogeneous transformation matrix to apply. |
| CvbException | When creating the transformed point cloud failed. |
|
static |
Transforms all points of this point cloud with the given transformation and stores them in the target .
| pc | PointCloud to transform. |
| transformation | Homogeneous transformation matrix to apply. |
| target | Point cloud to store the transformed points in. |
| CvbException | When transforming the point cloud failed. |