pub trait AffineFeatureTraitConst: Feature2DTraitConst {
// Required method
fn as_raw_AffineFeature(&self) -> *const c_void;
// Provided methods
fn get_view_params(
&self,
tilts: &mut Vector<f32>,
rolls: &mut Vector<f32>,
) -> Result<()> { ... }
fn get_default_name(&self) -> Result<String> { ... }
}
Expand description
Constant methods for crate::features2d::AffineFeature
Required Methods§
fn as_raw_AffineFeature(&self) -> *const c_void
Provided Methods§
fn get_view_params( &self, tilts: &mut Vector<f32>, rolls: &mut Vector<f32>, ) -> Result<()>
fn get_default_name(&self) -> Result<String>
Object Safety§
This trait is not object safe.