[][src]Struct rusoto_mediaconvert::NoiseReducer

pub struct NoiseReducer {
    pub filter: Option<String>,
    pub filter_settings: Option<NoiseReducerFilterSettings>,
    pub spatial_filter_settings: Option<NoiseReducerSpatialFilterSettings>,
    pub temporal_filter_settings: Option<NoiseReducerTemporalFilterSettings>,
}

Enable the Noise reducer (NoiseReducer) feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer (NoiseReducer), you must also select a value for Noise reducer filter (NoiseReducerFilter).

Fields

filter: Option<String>

Use Noise reducer filter (NoiseReducerFilter) to select one of the following spatial image filtering functions. To use this setting, you must also enable Noise reducer (NoiseReducer). * Bilateral preserves edges while reducing noise. * Mean (softest), Gaussian, Lanczos, and Sharpen (sharpest) do convolution filtering. * Conserve does min/max noise reduction. * Spatial does frequency-domain filtering based on JND principles. * Temporal optimizes video quality for complex motion.

filter_settings: Option<NoiseReducerFilterSettings>

Settings for a noise reducer filter

spatial_filter_settings: Option<NoiseReducerSpatialFilterSettings>

Noise reducer filter settings for spatial filter.

temporal_filter_settings: Option<NoiseReducerTemporalFilterSettings>

Noise reducer filter settings for temporal filter.

Trait Implementations

impl Clone for NoiseReducer[src]

impl Default for NoiseReducer[src]

impl PartialEq<NoiseReducer> for NoiseReducer[src]

impl Debug for NoiseReducer[src]

impl Serialize for NoiseReducer[src]

impl<'de> Deserialize<'de> for NoiseReducer[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self