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