[][src]Struct opencv::types::ParamGridRefMut

pub struct ParamGridRefMut<'o> { /* fields omitted */ }

Methods from Deref<Target = ParamGrid>

pub fn min_val(&self) -> Result<f64>[src]

Minimum value of the statmodel parameter. Default value is 0.

pub fn set_min_val(&mut self, val: f64) -> Result<()>[src]

Minimum value of the statmodel parameter. Default value is 0.

pub fn max_val(&self) -> Result<f64>[src]

Maximum value of the statmodel parameter. Default value is 0.

pub fn set_max_val(&mut self, val: f64) -> Result<()>[src]

Maximum value of the statmodel parameter. Default value is 0.

pub fn log_step(&self) -> Result<f64>[src]

Logarithmic step for iterating the statmodel parameter.

The grid determines the following iteration sequence of the statmodel parameter values: block formula where inline formula is the maximal index satisfying block formula The grid is logarithmic, so logStep must always be greater than 1. Default value is 1.

pub fn set_log_step(&mut self, val: f64) -> Result<()>[src]

Logarithmic step for iterating the statmodel parameter.

The grid determines the following iteration sequence of the statmodel parameter values: block formula where inline formula is the maximal index satisfying block formula The grid is logarithmic, so logStep must always be greater than 1. Default value is 1.

Trait Implementations

impl<'_> Deref for ParamGridRefMut<'_>[src]

type Target = ParamGrid

The resulting type after dereferencing.

impl<'_> DerefMut for ParamGridRefMut<'_>[src]

Auto Trait Implementations

impl<'o> RefUnwindSafe for ParamGridRefMut<'o>

impl<'o> Send for ParamGridRefMut<'o>

impl<'o> !Sync for ParamGridRefMut<'o>

impl<'o> Unpin for ParamGridRefMut<'o>

impl<'o> !UnwindSafe for ParamGridRefMut<'o>

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.