[][src]Struct opencv::stitching::Detail_GraphCutSeamFinder

pub struct Detail_GraphCutSeamFinder { /* fields omitted */ }

Minimum graph cut-based seam estimator. See details in V03 .

Implementations

impl Detail_GraphCutSeamFinder[src]

impl Detail_GraphCutSeamFinder[src]

pub fn new(
    cost_type: i32,
    terminal_cost: f32,
    bad_region_penalty: f32
) -> Result<Detail_GraphCutSeamFinder>
[src]

C++ default parameters

  • cost_type: COST_COLOR_GRAD
  • terminal_cost: 10000.f
  • bad_region_penalty: 1000.f

pub fn new_1(
    cost_type: &str,
    terminal_cost: f32,
    bad_region_penalty: f32
) -> Result<Detail_GraphCutSeamFinder>
[src]

C++ default parameters

  • terminal_cost: 10000.f
  • bad_region_penalty: 1000.f

Trait Implementations

impl Boxed for Detail_GraphCutSeamFinder[src]

impl Detail_GraphCutSeamFinderBaseTrait for Detail_GraphCutSeamFinder[src]

impl Detail_GraphCutSeamFinderTrait for Detail_GraphCutSeamFinder[src]

impl Detail_SeamFinder for Detail_GraphCutSeamFinder[src]

impl Drop for Detail_GraphCutSeamFinder[src]

impl Send for Detail_GraphCutSeamFinder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.