[][src]Enum opencv::ximgproc::AngleRangeOption

#[repr(C)]pub enum AngleRangeOption {
    ARO_0_45,
    ARO_45_90,
    ARO_90_135,
    ARO_315_0,
    ARO_315_45,
    ARO_45_135,
    ARO_315_135,
    ARO_CTR_HOR,
    ARO_CTR_VER,
}

Specifies the part of Hough space to calculate @details The enum specifies the part of Hough space to calculate. Each member specifies primarily direction of lines (horizontal or vertical) and the direction of angle changes. Direction of angle changes is from multiples of 90 to odd multiples of 45. The image considered to be written top-down and left-to-right. Angles are started from vertical line and go clockwise. Separate quarters and halves are written in orientation they should be in full Hough space.

Variants

ARO_0_45
ARO_45_90
ARO_90_135
ARO_315_0
ARO_315_45
ARO_45_135
ARO_315_135
ARO_CTR_HOR
ARO_CTR_VER

Trait Implementations

impl Clone for AngleRangeOption[src]

impl Copy for AngleRangeOption[src]

impl Debug for AngleRangeOption[src]

impl PartialEq<AngleRangeOption> for AngleRangeOption[src]

impl StructuralPartialEq for AngleRangeOption[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.