Hello
I have a python code which i would like to convert it to OCaml.
The library take a PNG remove border, horizontal lines, crops the image to pieces, denoises and resize again.
We use opencv.
I searched around in opam, github to find the following link that perform some functions that i need.
The below two links demostrate an FFI - “extern C” approach.
- FFI interface to opencv https://github.com/tovbinm/ocaml-faces
- FFI interface to opencv https://github.com/ChesleyTan/ascii-chat
Are there packages in OCaml for imageprocessing like opencv ?
Should i take the FFI interface to opencv from OCaml ?
Your thoughts are welcome.