%%VERSION%%
bimage is an image processing library for OCaml.
- Simple image type based on bigarrays
- Supports u8, u16, i32, i64, f32, f64 datatypes
- Composable image operations
- Image I/O using OpenImageIO (
bimage-io
) - Image I/O using ImageMagick/GraphicsMagick and stb_image (
bimage-unix
) - GLFW window support (
bimage-display
)
bimage is distributed under the ISC license.
Homepage: https://github.com/zshipko/ocaml-bimage
bimage can be installed with opam
:
$ opam install bimage
bimage-io can be installed by running:
$ opam install bimage-io
Additionally, bimage-unix
, which provides stb-image
and ImageMagick
bindings, can be installed by running:
$ opam install bimage-unix
If you don't use opam
consult the opam
file for build
instructions.
Type.t
: Defines the type of an image:u8
,u16
,f32
,f64
,i32
ori64
Color.t
: Defines the color of an image:gray
,rgb
,rgba
,xyz
andyuv
- It's possible to extend the color type by implementing COLOR
Image.t
: Image typeKernel.t
: Convolution kernelsTransform.t
: Image transformationsExpr.t
: Expression combinator- Building blocks for image processing filters
Filter.t
: Executable image filter- Makes
Expr.t
executable
- Makes
There is a corresponding file for each of these types in src/.
See examples/ for usage examples
The documentation and API reference is generated from the source
interfaces. It can be consulted online or via odig doc bimage
.
In the distribution sample programs and tests are located in the
test
directory. They can be built and run
with:
dune runtest