[−][src]Struct ndarray_vision::core::colour_models::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]
impl<T> Encoder<T, RGB> for PpmEncoder where
T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive,
[src]
T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive,
Implements the encoder trait for the PpmEncoder.
The ColourModel type argument is locked to RGB - this prevents calling
RGB::into::
fn encode(&self, image: &Image<T, RGB>) -> Vec<u8>
[src]
fn encode_file<P: AsRef<Path>>(
&self,
image: &Image<T, C>,
filename: P
) -> Result<()>
[src]
&self,
image: &Image<T, C>,
filename: P
) -> Result<()>
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]
T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive,
Implements the decoder trait for the PpmDecoder.
The ColourModel type argument is locked to RGB - this prevents calling
RGB::into::
fn decode(&self, bytes: &[u8]) -> Result<Image<T, RGB>>
[src]
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(&self) -> 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]
fn eq(&self, other: &RGB) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl PartialOrd<RGB> for RGB
[src]
fn partial_cmp(&self, other: &RGB) -> Option<Ordering>
[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 cmp(&self, other: &RGB) -> Ordering
[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]
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<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for RGB
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,