[][src]Trait opencv::stitching::Detail_GraphTrait

pub trait Detail_GraphTrait {
    pub fn as_raw_Detail_Graph(&self) -> *const c_void;
pub fn as_raw_mut_Detail_Graph(&mut self) -> *mut c_void; pub fn create(&mut self, num_vertices: i32) -> Result<()> { ... }
pub fn num_vertices(&self) -> Result<i32> { ... }
pub fn add_edge(&mut self, from: i32, to: i32, weight: f32) -> Result<()> { ... } }

Required methods

Loading content...

Provided methods

pub fn create(&mut self, num_vertices: i32) -> Result<()>[src]

pub fn num_vertices(&self) -> Result<i32>[src]

pub fn add_edge(&mut self, from: i32, to: i32, weight: f32) -> Result<()>[src]

Loading content...

Implementors

impl Detail_GraphTrait for Detail_Graph[src]

Loading content...