Trait opencv::stitching::Detail_ImageFeaturesTrait[][src]

pub trait Detail_ImageFeaturesTrait {
    fn as_raw_Detail_ImageFeatures(&self) -> *const c_void;
fn as_raw_mut_Detail_ImageFeatures(&mut self) -> *mut c_void; fn img_idx(&self) -> i32 { ... }
fn set_img_idx(&mut self, val: i32) { ... }
fn img_size(&self) -> Size { ... }
fn set_img_size(&mut self, val: Size) { ... }
fn keypoints(&mut self) -> Vector<KeyPoint> { ... }
fn set_keypoints(&mut self, val: Vector<KeyPoint>) { ... }
fn descriptors(&mut self) -> UMat { ... }
fn set_descriptors(&mut self, val: UMat) { ... }
fn get_keypoints(&mut self) -> Result<Vector<KeyPoint>> { ... } }
Expand description

Structure containing image keypoints and descriptors.

Required methods

Provided methods

Implementors