[][src]Enum opencv::mcc::COLOR_SPACE

#[repr(C)]pub enum COLOR_SPACE {
    COLOR_SPACE_sRGB,
    COLOR_SPACE_sRGBL,
    COLOR_SPACE_AdobeRGB,
    COLOR_SPACE_AdobeRGBL,
    COLOR_SPACE_WideGamutRGB,
    COLOR_SPACE_WideGamutRGBL,
    COLOR_SPACE_ProPhotoRGB,
    COLOR_SPACE_ProPhotoRGBL,
    COLOR_SPACE_DCI_P3_RGB,
    COLOR_SPACE_DCI_P3_RGBL,
    COLOR_SPACE_AppleRGB,
    COLOR_SPACE_AppleRGBL,
    COLOR_SPACE_REC_709_RGB,
    COLOR_SPACE_REC_709_RGBL,
    COLOR_SPACE_REC_2020_RGB,
    COLOR_SPACE_REC_2020_RGBL,
    COLOR_SPACE_XYZ_D65_2,
    COLOR_SPACE_XYZ_D65_10,
    COLOR_SPACE_XYZ_D50_2,
    COLOR_SPACE_XYZ_D50_10,
    COLOR_SPACE_XYZ_A_2,
    COLOR_SPACE_XYZ_A_10,
    COLOR_SPACE_XYZ_D55_2,
    COLOR_SPACE_XYZ_D55_10,
    COLOR_SPACE_XYZ_D75_2,
    COLOR_SPACE_XYZ_D75_10,
    COLOR_SPACE_XYZ_E_2,
    COLOR_SPACE_XYZ_E_10,
    COLOR_SPACE_Lab_D65_2,
    COLOR_SPACE_Lab_D65_10,
    COLOR_SPACE_Lab_D50_2,
    COLOR_SPACE_Lab_D50_10,
    COLOR_SPACE_Lab_A_2,
    COLOR_SPACE_Lab_A_10,
    COLOR_SPACE_Lab_D55_2,
    COLOR_SPACE_Lab_D55_10,
    COLOR_SPACE_Lab_D75_2,
    COLOR_SPACE_Lab_D75_10,
    COLOR_SPACE_Lab_E_2,
    COLOR_SPACE_Lab_E_10,
}

Variants

COLOR_SPACE_sRGB

https://en.wikipedia.org/wiki/SRGB , RGB color space

COLOR_SPACE_sRGBL

https://en.wikipedia.org/wiki/SRGB , linear RGB color space

COLOR_SPACE_AdobeRGB

https://en.wikipedia.org/wiki/Adobe_RGB_color_space , RGB color space

COLOR_SPACE_AdobeRGBL

https://en.wikipedia.org/wiki/Adobe_RGB_color_space , linear RGB color space

COLOR_SPACE_WideGamutRGB

https://en.wikipedia.org/wiki/Wide-gamut_RGB_color_space , RGB color space

COLOR_SPACE_WideGamutRGBL

https://en.wikipedia.org/wiki/Wide-gamut_RGB_color_space , linear RGB color space

COLOR_SPACE_ProPhotoRGB

https://en.wikipedia.org/wiki/ProPhoto_RGB_color_space , RGB color space

COLOR_SPACE_ProPhotoRGBL

https://en.wikipedia.org/wiki/ProPhoto_RGB_color_space , linear RGB color space

COLOR_SPACE_DCI_P3_RGB

https://en.wikipedia.org/wiki/DCI-P3 , RGB color space

COLOR_SPACE_DCI_P3_RGBL

https://en.wikipedia.org/wiki/DCI-P3 , linear RGB color space

COLOR_SPACE_AppleRGB

https://en.wikipedia.org/wiki/RGB_color_space , RGB color space

COLOR_SPACE_AppleRGBL

https://en.wikipedia.org/wiki/RGB_color_space , linear RGB color space

COLOR_SPACE_REC_709_RGB

https://en.wikipedia.org/wiki/Rec._709 , RGB color space

COLOR_SPACE_REC_709_RGBL

https://en.wikipedia.org/wiki/Rec._709 , linear RGB color space

COLOR_SPACE_REC_2020_RGB

https://en.wikipedia.org/wiki/Rec._2020 , RGB color space

COLOR_SPACE_REC_2020_RGBL

https://en.wikipedia.org/wiki/Rec._2020 , linear RGB color space

COLOR_SPACE_XYZ_D65_2

https://en.wikipedia.org/wiki/CIE_1931_color_space , non-RGB color space

COLOR_SPACE_XYZ_D65_10

non-RGB color space

COLOR_SPACE_XYZ_D50_2

non-RGB color space

COLOR_SPACE_XYZ_D50_10

non-RGB color space

COLOR_SPACE_XYZ_A_2

non-RGB color space

COLOR_SPACE_XYZ_A_10

non-RGB color space

COLOR_SPACE_XYZ_D55_2

non-RGB color space

COLOR_SPACE_XYZ_D55_10

non-RGB color space

COLOR_SPACE_XYZ_D75_2

non-RGB color space

COLOR_SPACE_XYZ_D75_10

non-RGB color space

COLOR_SPACE_XYZ_E_2

non-RGB color space

COLOR_SPACE_XYZ_E_10

non-RGB color space

COLOR_SPACE_Lab_D65_2

https://en.wikipedia.org/wiki/CIELAB_color_space , non-RGB color space

COLOR_SPACE_Lab_D65_10

non-RGB color space

COLOR_SPACE_Lab_D50_2

non-RGB color space

COLOR_SPACE_Lab_D50_10

non-RGB color space

COLOR_SPACE_Lab_A_2

non-RGB color space

COLOR_SPACE_Lab_A_10

non-RGB color space

COLOR_SPACE_Lab_D55_2

non-RGB color space

COLOR_SPACE_Lab_D55_10

non-RGB color space

COLOR_SPACE_Lab_D75_2

non-RGB color space

COLOR_SPACE_Lab_D75_10

non-RGB color space

COLOR_SPACE_Lab_E_2

non-RGB color space

COLOR_SPACE_Lab_E_10

non-RGB color space

Trait Implementations

impl Clone for COLOR_SPACE[src]

impl Copy for COLOR_SPACE[src]

impl Debug for COLOR_SPACE[src]

impl PartialEq<COLOR_SPACE> for COLOR_SPACE[src]

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