pub trait LDATraitConst {
    fn as_raw_LDA(&self) -> *const c_void;

    fn save(&self, filename: &str) -> Result<()> { ... }
    fn save_1(&self, fs: &mut FileStorage) -> Result<()> { ... }
    fn eigenvectors(&self) -> Result<Mat> { ... }
    fn eigenvalues(&self) -> Result<Mat> { ... }
}
Expand description

Linear Discriminant Analysis @todo document this class

Required Methods§

Provided Methods§

Serializes this object to a given filename.

Serializes this object to a given cv::FileStorage.

Returns the eigenvectors of this LDA.

Returns the eigenvalues of this LDA.

Implementors§