[][src]Struct opencv::features2d::SimpleBlobDetector_Params

#[repr(C)]
pub struct SimpleBlobDetector_Params {
    pub threshold_step: f32,
    pub min_threshold: f32,
    pub max_threshold: f32,
    pub min_repeatability: size_t,
    pub min_dist_between_blobs: f32,
    pub filter_by_color: bool,
    pub blob_color: u8,
    pub filter_by_area: bool,
    pub min_area: f32,
    pub max_area: f32,
    pub filter_by_circularity: bool,
    pub min_circularity: f32,
    pub max_circularity: f32,
    pub filter_by_inertia: bool,
    pub min_inertia_ratio: f32,
    pub max_inertia_ratio: f32,
    pub filter_by_convexity: bool,
    pub min_convexity: f32,
    pub max_convexity: f32,
}

Fields

threshold_step: f32min_threshold: f32max_threshold: f32min_repeatability: size_tmin_dist_between_blobs: f32filter_by_color: boolblob_color: u8filter_by_area: boolmin_area: f32max_area: f32filter_by_circularity: boolmin_circularity: f32max_circularity: f32filter_by_inertia: boolmin_inertia_ratio: f32max_inertia_ratio: f32filter_by_convexity: boolmin_convexity: f32max_convexity: f32

Methods

impl SimpleBlobDetector_Params[src]

pub fn default() -> Result<SimpleBlobDetector_Params>[src]

pub fn read(self, _fn: &FileNode) -> Result<()>[src]

pub fn write(self, fs: &mut FileStorage) -> Result<()>[src]

Trait Implementations

impl Clone for SimpleBlobDetector_Params[src]

impl Copy for SimpleBlobDetector_Params[src]

impl Debug for SimpleBlobDetector_Params[src]

impl PartialEq<SimpleBlobDetector_Params> for SimpleBlobDetector_Params[src]

impl StructuralPartialEq for SimpleBlobDetector_Params[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.