pub struct PointCloudDecoder { /* private fields */ }decoder only.Expand description
Decoder for Draco point cloud bitstreams.
PointCloudDecoder reads a point-cloud .drc bitstream and reconstructs a
PointCloud with its attributes and metadata. Both
KD-tree and sequential attribute encodings are supported (the actual decode
requires the point_cloud_decode feature).
A round trip is shown on the PointCloudEncoder type docs.
Implementations§
Source§impl PointCloudDecoder
impl PointCloudDecoder
Sourcepub fn decode(
&mut self,
in_buffer: &mut DecoderBuffer<'_>,
out_pc: &mut PointCloud,
) -> Status
Available on crate feature point_cloud_decode only.
pub fn decode( &mut self, in_buffer: &mut DecoderBuffer<'_>, out_pc: &mut PointCloud, ) -> Status
point_cloud_decode only.Decodes a Draco point cloud from in_buffer into out_pc.
out_pc need not be empty: whatever it held is replaced, the same way
MeshDecoder::decode
replaces its mesh. decode_after_header does not clear, because its
caller has already done so and has decoded metadata since.
§Errors
Returns an error if the header is invalid, the bitstream version is unsupported, or the encoded attributes are malformed.
Sourcepub fn decode_after_header(
&mut self,
version_major: u8,
version_minor: u8,
method: u8,
buffer: &mut DecoderBuffer<'_>,
out_pc: &mut PointCloud,
) -> Status
Available on crate feature point_cloud_decode only.
pub fn decode_after_header( &mut self, version_major: u8, version_minor: u8, method: u8, buffer: &mut DecoderBuffer<'_>, out_pc: &mut PointCloud, ) -> Status
point_cloud_decode only.Decode point cloud data when header + metadata have already been parsed. Used by MeshDecoder to delegate point cloud streams.
Sourcepub fn get_geometry_type(&self) -> EncodedGeometryType
pub fn get_geometry_type(&self) -> EncodedGeometryType
Returns the encoded geometry type handled by this decoder.