[][src]Struct ndarray_vision::core::colour_models::RGB

pub struct RGB;

RGB colour as intended by sRGB and standardised in IEC 61966-2-1:1999

Methods

impl RGB[src]

pub fn remove_gamma(v: f64) -> f64[src]

Remove the gamma from a normalised channel

pub fn apply_gamma(v: f64) -> f64[src]

Apply the gamma to a normalised channel

Trait Implementations

impl ColourModel for RGB[src]

fn channels() -> usize[src]

Number of colour channels for a type.

impl<T> Encoder<T, RGB> for PpmEncoder where
    T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive
[src]

Implements the encoder trait for the PpmEncoder.

The ColourModel type argument is locked to RGB - this prevents calling RGB::into::() unnecessarily which is unavoidable until trait specialisation is stabilised.

fn encode_file<P: AsRef<Path>>(
    &self,
    image: &Image<T, C>,
    filename: P
) -> Result<()>
[src]

Encode an image saving it to the file at filename. This function shouldn't add an extension preferring the user to do that instead. Read more

impl<T> Decoder<T, RGB> for PpmDecoder where
    T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive
[src]

Implements the decoder trait for the PpmDecoder.

The ColourModel type argument is locked to RGB - this prevents calling RGB::into::() unnecessarily which is unavoidable until trait specialisation is stabilised.

fn decode_file<P: AsRef<Path>>(&self, filename: P) -> Result<Image<T, C>>[src]

Given a filename decode an image performing any necessary conversions.

impl Clone for RGB[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<RGB> for RGB[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl PartialOrd<RGB> for RGB[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for RGB[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl Eq for RGB[src]

impl Copy for RGB[src]

impl Hash for RGB[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for RGB[src]

Auto Trait Implementations

impl Send for RGB

impl Sync for RGB

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]