@hackage friday0.2.3.2
A functional image processing library for Haskell.
Categories
License
LGPL-3.0-only
Maintainer
Raphael Javaux <raphaeljavaux[at]gmail.com>
Links
Versions
Installation
Dependencies (8)
- base >=4.8 && <5
- containers >=0.4 && <0.7.0.0
- convertible >=1 && <2
- deepseq >=1.3 && <2
- primitive >=0.5.2.1 && <0.9
- ratio-int >=0.1.2 && <0.2 Show all…
Dependents (7)
@hackage/friday-devil, @hackage/friday-juicypixels, @hackage/color-counter, @hackage/acme-everything, @hackage/drawille, @hackage/friday-scale-dct, Show all…
Friday provides functions to manipulate images in a functional way. The library is designed to be fast, generic and type-safe.
Images can be represented in two representations:
the
Manifestrepresentation stores images in HaskellVectors ;the
Delayedrepresentation uses functions to produce images pixels. These images can be combined to produce complex transformations. By some inlining, Haskell compilers are able to produce fast algorithms by removing intermediate structures.
The library currently support four color spaces: RGB, RGBA, HSV and gray-scale images.
Please read our README to get a detailed usage and some examples.