Computer Vision utility functions
2022-01-19 13:10:23 +00:00
images map test 2022-01-14 21:19:45 +00:00
src Fix conversion function leak 2022-01-19 13:10:23 +00:00
LICENSE Change email address and years 2015-01-24 13:30:12 +00:00
Makefile Remove plist files 2017-06-06 16:19:13 +01:00
README.md Tidy readme 2018-03-15 19:04:06 +00:00
test.sh Colour reduction 2017-07-04 20:28:42 +01:00
test2.sh Initial 2013-02-15 11:35:07 +00:00
test3.sh Flood fill 2022-01-15 16:05:18 +00:00

Visionutils

This is not an application in itself but is intended to be a template for writing command line computer vision applications. It includes loading and saving PNG files and doing some image processing such as edge detection and adaptive thresholding.

I've used an ultra-permissive license so that this code could be used in any project for any purpose, possibly including closed source commercial projects.

Why not just use OpenCV?

OpenCV may be the best choice in many cases, but if you want something lightweight written in C and only need to do a few basic image transformations with minimal complexity then this could be a better option.