Enum opencv::imgproc::LineSegmentDetectorModes
source · #[repr(C)]
pub enum LineSegmentDetectorModes {
LSD_REFINE_NONE,
LSD_REFINE_STD,
LSD_REFINE_ADV,
}
Expand description
Variants of Line Segment %Detector
Variants§
LSD_REFINE_NONE
No refinement applied
LSD_REFINE_STD
Standard refinement is applied. E.g. breaking arches into smaller straighter line approximations.
LSD_REFINE_ADV
Advanced refinement. Number of false alarms is calculated, lines are refined through increase of precision, decrement in size, etc.
Trait Implementations§
source§impl Clone for LineSegmentDetectorModes
impl Clone for LineSegmentDetectorModes
source§fn clone(&self) -> LineSegmentDetectorModes
fn clone(&self) -> LineSegmentDetectorModes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more