pub trait PCATrait: PCATraitConst {
    fn as_raw_mut_PCA(&mut self) -> *mut c_void;

    fn set_eigenvectors(&mut self, val: Mat) { ... }
fn set_eigenvalues(&mut self, val: Mat) { ... }
fn set_mean(&mut self, val: Mat) { ... }
fn read(&mut self, fn_: &FileNode) -> Result<()> { ... } }

Required methods

Provided methods

eigenvectors of the covariation matrix

eigenvalues of the covariation matrix

mean value subtracted before the projection and added after the back projection

load PCA objects

Loads @ref eigenvalues @ref eigenvectors and @ref mean from specified FileNode

Implementors