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

Safe HaskellNone
LanguageHaskell2010

OpenCV.Unsafe

Contents

Synopsis

Documentation

unsafeCoerceMat :: Mat shapeIn channelsIn depthIn -> Mat shapeOut channelsOut depthOut Source #

unsafeCoerceMatM :: Mut (Mat shapeIn channelsIn depthIn) s -> Mut (Mat shapeOut channelsOut depthOut) s Source #

Mutable Matrix

unsafeRead Source #

Arguments

:: (PrimMonad m, Storable value) 
=> Mut (Mat shape channels depth) (PrimState m) 
-> [Int]

position

-> Int

channel

-> m value 

unsafeWrite Source #

Arguments

:: (PrimMonad m, Storable value) 
=> Mut (Mat shape channels depth) (PrimState m) 
-> [Int]

position

-> Int

channel

-> value 
-> m ()