#[repr(C)]pub enum HoughDeskewOption {
HDO_RAW = 0,
HDO_DESKEW = 1,
}Expand description
Specifies to do or not to do skewing of Hough transform image @details The enum specifies to do or not to do skewing of Hough transform image so it would be no cycling in Hough transform image through borders of image.
Variants§
Trait Implementations§
Source§impl Clone for HoughDeskewOption
impl Clone for HoughDeskewOption
Source§fn clone(&self) -> HoughDeskewOption
fn clone(&self) -> HoughDeskewOption
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 moreSource§impl Debug for HoughDeskewOption
impl Debug for HoughDeskewOption
Source§impl From<HoughDeskewOption> for i32
impl From<HoughDeskewOption> for i32
Source§fn from(v: HoughDeskewOption) -> Self
fn from(v: HoughDeskewOption) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HoughDeskewOption
impl PartialEq for HoughDeskewOption
Source§impl TryFrom<i32> for HoughDeskewOption
impl TryFrom<i32> for HoughDeskewOption
impl Copy for HoughDeskewOption
impl Eq for HoughDeskewOption
impl StructuralPartialEq for HoughDeskewOption
Auto Trait Implementations§
impl Freeze for HoughDeskewOption
impl RefUnwindSafe for HoughDeskewOption
impl Send for HoughDeskewOption
impl Sync for HoughDeskewOption
impl Unpin for HoughDeskewOption
impl UnwindSafe for HoughDeskewOption
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more