|
|
|
| Description |
Defines the Y'CbCr and Y'PbPr colour spaces in accordance with
ITU-R Recommendation BT.601 used for high definition television
(HDTV).
For standard definition television (SDTV) see Data.Colour.Rec601.
Also allows you to create a colour from linear coordinates using
the ITU-R Recommendation BT.601 RGB primaries, which are the
primaries used in sRGB.
See also Data.Colour.SRGB.
|
|
| Synopsis |
|
| luma :: (Floating a, RealFrac a) => Colour a -> a | | | y'PbPr :: (Floating a, RealFrac a) => a -> a -> a -> Colour a | | | toY'PbPr :: (Floating a, RealFrac a) => Colour a -> (a, a, a) | | | y'CbCr :: (Floating a, RealFrac a) => Word8 -> Word8 -> Word8 -> Colour a | | | toY'CbCr :: (Floating a, RealFrac a) => Colour a -> (Word8, Word8, Word8) | | | rgb709 :: a -> a -> a -> Colour a | | | toRGB709 :: Colour a -> (a, a, a) |
|
|
| Documentation |
|
|
| Luma (Y') approximates the Data.Colour.CIE.lightness of a Colour.
|
|
|
| Construct a Colour from Y'PbPr coordinates.
|
|
|
| Returns the Y'PbPr coordinates of a Colour.
|
|
|
| Construct a Colour from Y'CbRr 8-bit coordinates.
|
|
|
| Returns the Y'CbCr 8-bit coordinates of a Colour.
|
|
|
| Constructs a Colour from RGB values using the linear RGB colour
space specified in Rec.709.
|
|
|
| Return RGB values using the linear RGB colour space specified in
Rec.709.
|
|
| Produced by Haddock version 2.6.0 |