pub struct MaskButterworthRingOptions {
pub uchar: bool,
pub nodc: bool,
pub reject: bool,
pub optical: bool,
}
Expand description
Options for mask_butterworth_ring operation
Fields§
§uchar: bool
uchar: bool
-> Output an unsigned char image
default: false
nodc: bool
nodc: bool
-> Remove DC component
default: false
reject: bool
reject: bool
-> Invert the sense of the filter
default: false
optical: bool
optical: bool
-> Rotate quadrants to optical space
default: false
Trait Implementations§
Source§impl Clone for MaskButterworthRingOptions
impl Clone for MaskButterworthRingOptions
Source§fn clone(&self) -> MaskButterworthRingOptions
fn clone(&self) -> MaskButterworthRingOptions
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 MaskButterworthRingOptions
impl Debug for MaskButterworthRingOptions
Auto Trait Implementations§
impl Freeze for MaskButterworthRingOptions
impl RefUnwindSafe for MaskButterworthRingOptions
impl Send for MaskButterworthRingOptions
impl Sync for MaskButterworthRingOptions
impl Unpin for MaskButterworthRingOptions
impl UnwindSafe for MaskButterworthRingOptions
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