pub trait BOWImgDescriptorExtractorTraitConst {
    fn as_raw_BOWImgDescriptorExtractor(&self) -> *const c_void;

    fn get_vocabulary(&self) -> Result<Mat> { ... }
    fn descriptor_size(&self) -> Result<i32> { ... }
    fn descriptor_type(&self) -> Result<i32> { ... }
}
Expand description

Required Methods§

Provided Methods§

Returns the set vocabulary.

Returns an image descriptor size if the vocabulary is set. Otherwise, it returns 0.

Returns an image descriptor type.

Implementors§