pub trait HasIntensity {
// Required method
fn intensity(&self) -> Result<&[f32], SpatialError>;
}Expand description
Capability trait for point clouds with intensity values.
Required Methods§
Sourcefn intensity(&self) -> Result<&[f32], SpatialError>
fn intensity(&self) -> Result<&[f32], SpatialError>
Returns the intensity column as an f32 slice.