#include #include "convert.h" module Graphics.Tools.Bindings.Convert ( c'cpy_ipl_d8_gray_to_d8_rgb , c'cpy_ipl_f32_gray_to_d8_rgb , c'cpy_ipl_d8_rgb_to_d8_rgb , c'cpy_ipl_f32_rgb_to_d8_rgb ) where import Foreign.Ptr import CV.Image(BareImage) #ccall cpy_ipl_d8_gray_to_d8_rgb , Ptr BareImage -> Ptr () -> IO () #ccall cpy_ipl_f32_gray_to_d8_rgb , Ptr BareImage -> Ptr () -> IO () #ccall cpy_ipl_d8_rgb_to_d8_rgb , Ptr BareImage -> Ptr () -> IO () #ccall cpy_ipl_f32_rgb_to_d8_rgb , Ptr BareImage -> Ptr () -> IO ()