[][src]Struct av_metrics::video::PlanarMetrics

pub struct PlanarMetrics {
    pub y: f64,
    pub u: f64,
    pub v: f64,
    pub avg: f64,
}

Certain metrics return a value per plane. This struct contains the output for those metrics per plane, as well as a weighted average of the planes.

Fields

y: f64

Metric value for the Y plane.

u: f64

Metric value for the U/Cb plane.

v: f64

Metric value for the V/Cb plane.

avg: f64

Weighted average of the three planes.

Trait Implementations

impl Clone for PlanarMetrics[src]

impl Copy for PlanarMetrics[src]

impl Debug for PlanarMetrics[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]