[][src]Trait opencv::ml::SVM_Kernel

pub trait SVM_Kernel: AlgorithmTrait {
    fn as_raw_SVM_Kernel(&self) -> *mut c_void;

    fn get_type(&self) -> Result<i32> { ... }
fn calc(
        &mut self,
        vcount: i32,
        n: i32,
        vecs: &f32,
        another: &f32,
        results: &mut f32
    ) -> Result<()> { ... } }

Required methods

Loading content...

Provided methods

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

fn calc(
    &mut self,
    vcount: i32,
    n: i32,
    vecs: &f32,
    another: &f32,
    results: &mut f32
) -> Result<()>

Loading content...

Implementors

impl SVM_Kernel for PtrOfKernel[src]

Loading content...