I have a type Image which is basically an c-array of floats. It is easy to create functions
such as map :: (Float -> Float) -> Image -> Image, or zipWith :: (Float -> Float -> Float) -> Image -> Image -> Image.
However, I have a feeling that it would also be possible to provide something that looks like an applicative instance on top of these functions, allowing more flexible pixel level manipulations like ((+) <$> image1 <*> image2) or ((\x y z -> (x+y)/z) <$> i1 <*> i2 <*> i3). However, the naive approach fails, since Image type cannot contain things other than floats, making it impossible to implement fmap as such.
How could this be implemented?
display :: Image Float -> IO ()could only take images with floats, but for other functions likemapit wouldn't matter. – Tom Lokhorst Aug 11 '11 at 11:20purewould be rather ugly performance-wise. (Implementingpureby having an Image of functions is also problematic since it cannot know the size of the image.) – aleator Aug 11 '11 at 12:04type Image = CArray Floatand make a Functor instance for CArray with fmap being your map function, and you make sure you can't make a CArray of anything but CArray Float (don't export the constructor, for example) – David V. Aug 11 '11 at 12:30Imagetype rather than work from its concrete memory representation. For instance, in Conal Elliott's Pan and Chalkboard from U.Kansas - masks are represented asImage Boola function that determines whether a pixel is within the mask.Image RGBis an image of RGB values that can be rendered as a bitmap. If you need these different types for Image you will need a more general representation. – stephen tetley Aug 11 '11 at 15:02