pub trait AffineFeatureConst: Feature2DTraitConst {
    fn as_raw_AffineFeature(&self) -> *const c_void;

    fn get_view_params(
        &self,
        tilts: &mut Vector<f32>,
        rolls: &mut Vector<f32>
    ) -> Result<()> { ... }
fn get_default_name(&self) -> Result<String> { ... } }
Expand description

Class for implementing the wrapper which makes detectors and extractors to be affine invariant, described as ASIFT in YM11 .

Required methods

Provided methods

Implementors