Enum opencv::imgproc::HoughModes [−][src]
#[repr(C)]
pub enum HoughModes {
HOUGH_STANDARD,
HOUGH_PROBABILISTIC,
HOUGH_MULTI_SCALE,
HOUGH_GRADIENT,
HOUGH_GRADIENT_ALT,
}
Expand description
Variants of a Hough transform
Variants
classical or standard Hough transform. Every line is represented by two floating-point
numbers , where
is a distance between (0,0) point and the line,
and
is the angle between x-axis and the normal to the line. Thus, the matrix must
be (the created sequence will be) of CV_32FC2 type
probabilistic Hough transform (more efficient in case if the picture contains a few long linear segments). It returns line segments rather than the whole line. Each segment is represented by starting and ending points, and the matrix must be (the created sequence will be) of the CV_32SC4 type.
multi-scale variant of the classical Hough transform. The lines are encoded the same way as HOUGH_STANDARD.
basically 21HT, described in Yuen90
variation of HOUGH_GRADIENT to get better accuracy
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for HoughModes
impl Send for HoughModes
impl Sync for HoughModes
impl Unpin for HoughModes
impl UnwindSafe for HoughModes
Blanket Implementations
Mutably borrows from an owned value. Read more