this post was submitted on 27 Feb 2021
1 points (100.0% liked)

C & C++

838 readers
1 users here now

founded 5 years ago
MODERATORS
 

I am looking for an image processing library for c that can do:

-convolutions

-boundaries detection

-pixel manipulation

Is there such a thing? thanks

top 1 comments
sorted by: hot top controversial new old
[–] lmemsm@lemmy.ml 1 points 2 years ago

Wondering if imagemagick or graphicsmagick would be useful. They can be used as libraries instead of just programs. libmupdf has some interesting graphics routines. As to boundary detection, might need to look at machine learning libraries for that. Some C machine learning libraries that deal with image detection include ccv ( https://github.com/liuliu/ccv ), yolo ( https://pjreddie.com/darknet/ ) and vlfeat ( https://www.vlfeat.org/ ).