Mm_image.ImageOperations on images.
module Data : sig ... endmodule Pixel : sig ... endmodule Point : sig ... endmodule Fraction : sig ... endmodule Draw : sig ... endmodule Bitmap : sig ... endOperation on bitmaps, which are black and white images.
module RGB8 : sig ... endOperations on images stored in RGB8 format, ie RGB channels, one byte each.
module ARGB8 : sig ... endmodule BGRA : sig ... endmodule RGBA32 : sig ... endOperations on images stored in RGBA32 format (ie RGB channels + an alpha channel, one byte for each).
module YUV420 : sig ... endOperations on images stored in YUV420 format, ie one luma (Y) and two chrominance (U and V) channels.
module Generic : sig ... endOperations on images in generic formats (many formats are supported).
module type CanvasImage = sig ... endType of image module expected to build canvas.
module Canvas (I : CanvasImage) : sig ... endCanvas of images, i.e. formal sums of images of various dimensions with various offsets.
module CanvasYUV420 : sig ... end