Package boofcv.alg.cloud
Interface PointCloudReader
public interface PointCloudReader
Interface for reading a point cloud
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoidget(int index, Point3D_F32 point) Copies the pointvoidget(int index, Point3D_F64 point) Copies the pointintgetRGB(int index) RGB value of pointintsize()Number of pointsstatic PointCloudReaderwrap(PointCloudReader.Generic op, int size) static PointCloudReaderwrap3FRGB(float[] cloud, float[] rgb, int offset, int length) static PointCloudReaderwrapF32(List<Point3D_F32> cloud) static PointCloudReaderwrapF32(List<Point3D_F32> cloud, int[] rgb) static PointCloudReaderwrapF32RGB(List<Point3dRgbI_F32> cloud) static PointCloudReaderwrapF64(List<Point3D_F64> cloud) static PointCloudReaderwrapF64(List<Point3D_F64> cloud, int[] rgb) static PointCloudReaderwrapF64RGB(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
-