Dithering algorithms in C/C++ with OpenCV
If you want to compiled this program from source, you should have make
,
cmake
and a C++ compiler (either g++ or clang) installed.
After compiling, the command line tool is pretty straight forward:
./dither <input_file> <output_file>
git clone https://github.com/SiwonP/dither.git
cd dither
mkdir build
cd build
cmake ..
make
No binaries yet.
- Adding different algorithms
- Choosing algorithm from command line arguments
- Adding color or b&w modes
Simon Petit
This programm is released under the MIT License, for details see LICENSE.