[][src]Enum opencv::ximgproc::HoughOp

#[repr(C)]pub enum HoughOp {
    FHT_MIN,
    FHT_MAX,
    FHT_ADD,
    FHT_AVE,
}

Specifies binary operations. @details The enum specifies binary operations, that is such ones which involve two operands. Formally, a binary operation @f$ f @f$ on a set @f$ S @f$ is a binary relation that maps elements of the Cartesian product @f$ S \times S @f$ to @f$ S @f$: @f[ f: S \times S \to S @f] @ingroup MinUtils_MathOper

Variants

FHT_MIN
FHT_MAX
FHT_ADD
FHT_AVE

Trait Implementations

impl Clone for HoughOp[src]

impl Copy for HoughOp[src]

impl Debug for HoughOp[src]

impl PartialEq<HoughOp> for HoughOp[src]

impl StructuralPartialEq for HoughOp[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.