opencv-0.0.1.1: Haskell binding to OpenCV-3.x

Safe HaskellNone
LanguageHaskell2010

OpenCV.Core.Types.Mat.HMat

Documentation

data HMat Source #

Instances

Eq HMat Source # 

Methods

(==) :: HMat -> HMat -> Bool #

(/=) :: HMat -> HMat -> Bool #

Show HMat Source # 

Methods

showsPrec :: Int -> HMat -> ShowS #

show :: HMat -> String #

showList :: [HMat] -> ShowS #

data HElems Source #

Constructors

HElems_8U !(Vector Word8) 
HElems_8S !(Vector Int8) 
HElems_16U !(Vector Word16) 
HElems_16S !(Vector Int16) 
HElems_32S !(Vector Int32) 
HElems_32F !(Vector Float) 
HElems_64F !(Vector Double) 
HElems_USRTYPE1 !(Vector ByteString) 

Instances

class ToHElems a where Source #

Minimal complete definition

toHElems

Methods

toHElems :: Vector a -> HElems Source #

Instances

toHElems :: ToHElems a => Vector a -> HElems Source #

matToHMat :: Mat shape channels depth -> HMat Source #