pub trait PCAPriorTraitConst {
    // Required method
    fn as_raw_PCAPrior(&self) -> *const c_void;

    // Provided methods
    fn get_padding(&self) -> Result<i32> { ... }
    fn get_basis_size(&self) -> Result<i32> { ... }
    fn fill_constraints(
        &self,
        a1: &mut f32,
        a2: &mut f32,
        b1: &mut f32,
        b2: &mut f32
    ) -> Result<()> { ... }
}
Expand description

Constant methods for crate::optflow::PCAPrior

Required Methods§

Provided Methods§

source

fn get_padding(&self) -> Result<i32>

source

fn get_basis_size(&self) -> Result<i32>

source

fn fill_constraints( &self, a1: &mut f32, a2: &mut f32, b1: &mut f32, b2: &mut f32 ) -> Result<()>

Implementors§