Enum opencv::imgproc::AdaptiveThresholdTypes [−][src]
#[repr(C)]
pub enum AdaptiveThresholdTypes {
ADAPTIVE_THRESH_MEAN_C,
ADAPTIVE_THRESH_GAUSSIAN_C,
}Expand description
Variants
the threshold value is a mean of the
neighborhood of
minus C
the threshold value is a weighted sum (cross-correlation with a Gaussian
window) of the
neighborhood of
minus C . The default sigma (standard deviation) is used for the specified blockSize . See
#getGaussianKernel
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AdaptiveThresholdTypes
impl Send for AdaptiveThresholdTypes
impl Sync for AdaptiveThresholdTypes
impl Unpin for AdaptiveThresholdTypes
impl UnwindSafe for AdaptiveThresholdTypes
Blanket Implementations
Mutably borrows from an owned value. Read more