Detail_MatchesInfoTraitConst

Trait Detail_MatchesInfoTraitConst 

Source
pub trait Detail_MatchesInfoTraitConst {
    // Required method
    fn as_raw_Detail_MatchesInfo(&self) -> *const c_void;

    // Provided methods
    fn src_img_idx(&self) -> i32 { ... }
    fn dst_img_idx(&self) -> i32 { ... }
    fn matches(&self) -> Vector<DMatch> { ... }
    fn inliers_mask(&self) -> Vector<u8> { ... }
    fn num_inliers(&self) -> i32 { ... }
    fn h(&self) -> Mat { ... }
    fn confidence(&self) -> f64 { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn src_img_idx(&self) -> i32

Source

fn dst_img_idx(&self) -> i32

Images indices (optional)

Source

fn matches(&self) -> Vector<DMatch>

Source

fn inliers_mask(&self) -> Vector<u8>

Geometrically consistent matches mask

Source

fn num_inliers(&self) -> i32

Number of geometrically consistent matches

Source

fn h(&self) -> Mat

Estimated transformation

Source

fn confidence(&self) -> f64

Confidence two images are from the same panorama

Implementors§