[][src]Struct opencv::bioinspired::SegmentationParameters

#[repr(C)]pub struct SegmentationParameters {
    pub threshold_on: f32,
    pub threshold_off: f32,
    pub local_energy_temporal_constant: f32,
    pub local_energy_spatial_constant: f32,
    pub neighborhood_energy_temporal_constant: f32,
    pub neighborhood_energy_spatial_constant: f32,
    pub context_energy_temporal_constant: f32,
    pub context_energy_spatial_constant: f32,
}

parameter structure that stores the transient events detector setup parameters

Fields

threshold_on: f32threshold_off: f32local_energy_temporal_constant: f32

the time constant of the first order low pass filter, use it to cut high temporal frequencies (noise or fast motion), unit is frames, typical value is 0.5 frame

local_energy_spatial_constant: f32

the spatial constant of the first order low pass filter, use it to cut high spatial frequencies (noise or thick contours), unit is pixels, typical value is 5 pixel

neighborhood_energy_temporal_constant: f32

local neighborhood energy filtering parameters : the aim is to get information about the energy neighborhood to perform a center surround energy analysis

neighborhood_energy_spatial_constant: f32context_energy_temporal_constant: f32

context neighborhood energy filtering parameters : the aim is to get information about the energy on a wide neighborhood area to filtered out local effects

context_energy_spatial_constant: f32

Implementations

impl SegmentationParameters[src]

Trait Implementations

impl Clone for SegmentationParameters[src]

impl Copy for SegmentationParameters[src]

impl Debug for SegmentationParameters[src]

impl PartialEq<SegmentationParameters> for SegmentationParameters[src]

impl StructuralPartialEq for SegmentationParameters[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.