Package boofcv.alg.cloud
Interface PointCloudReader
public interface PointCloudReader
Interface for reading a point cloud
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
get
(int index, Point3D_F32 point) Copies the pointvoid
get
(int index, Point3D_F64 point) Copies the pointint
getRGB
(int index) RGB value of pointint
size()
Number of pointsstatic PointCloudReader
wrap
(PointCloudReader.Generic op, int size) static PointCloudReader
wrap3FRGB
(float[] cloud, float[] rgb, int offset, int length) static PointCloudReader
wrapF32
(List<Point3D_F32> cloud) static PointCloudReader
wrapF32
(List<Point3D_F32> cloud, int[] rgb) static PointCloudReader
wrapF32RGB
(List<Point3dRgbI_F32> cloud) static PointCloudReader
wrapF64
(List<Point3D_F64> cloud) static PointCloudReader
wrapF64
(List<Point3D_F64> cloud, int[] rgb) static PointCloudReader
wrapF64RGB
(List<Point3dRgbI_F64> cloud)
-
Method Details
-
size
int size()Number of points -
get
Copies the point -
get
Copies the point -
getRGB
int getRGB(int index) RGB value of point -
wrap3FRGB
-
wrapF32
-
wrapF64
-
wrapF32RGB
-
wrapF64RGB
-
wrapF32
-
wrapF64
-
wrap
-