Vision.Image.RGBA.Type
type RGBA = Manifest RGBAPixel Source #
data RGBAPixel Source #
Constructors
Fields
Defined in Vision.Image.RGBA.Type
Methods
sizeOf :: RGBAPixel -> Int #
alignment :: RGBAPixel -> Int #
peekElemOff :: Ptr RGBAPixel -> Int -> IO RGBAPixel #
pokeElemOff :: Ptr RGBAPixel -> Int -> RGBAPixel -> IO () #
peekByteOff :: Ptr b -> Int -> IO RGBAPixel #
pokeByteOff :: Ptr b -> Int -> RGBAPixel -> IO () #
peek :: Ptr RGBAPixel -> IO RGBAPixel #
poke :: Ptr RGBAPixel -> RGBAPixel -> IO () #
showsPrec :: Int -> RGBAPixel -> ShowS #
show :: RGBAPixel -> String #
showList :: [RGBAPixel] -> ShowS #
Defined in Vision.Histogram
Associated Types
type PixelValueSpace RGBAPixel Source #
pixToIndex :: RGBAPixel -> PixelValueSpace RGBAPixel Source #
domainSize :: RGBAPixel -> PixelValueSpace RGBAPixel Source #
type PixelChannel RGBAPixel Source #
pixNChannels :: RGBAPixel -> Int Source #
pixIndex :: RGBAPixel -> Int -> PixelChannel RGBAPixel Source #
interpol :: (PixelChannel RGBAPixel -> PixelChannel RGBAPixel -> PixelChannel RGBAPixel) -> RGBAPixel -> RGBAPixel -> RGBAPixel Source #
(==) :: RGBAPixel -> RGBAPixel -> Bool #
(/=) :: RGBAPixel -> RGBAPixel -> Bool #
Defined in Vision.Image.Conversion
safeConvert :: GreyPixel -> ConvertResult RGBAPixel #
safeConvert :: HSVPixel -> ConvertResult RGBAPixel #
safeConvert :: RGBPixel -> ConvertResult RGBAPixel #
safeConvert :: RGBAPixel -> ConvertResult GreyPixel #
safeConvert :: RGBAPixel -> ConvertResult HSVPixel #
safeConvert :: RGBAPixel -> ConvertResult RGBPixel #
safeConvert :: RGBAPixel -> ConvertResult RGBAPixel #
type RGBADelayed = Delayed RGBAPixel Source #