Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image processing library for D?

I started using D a few days ago and I like it a lot. I was wondering... Is there a image processing library for D? Maybe something like opencv? I have searched but no luck...

like image 293
RaulPL Avatar asked Jul 22 '11 00:07

RaulPL


1 Answers

None that I'm aware of, but one possibility is to simply translate the C header for OpenCV to D. D can call any code that exposes a C interface, so you can write all your code in D and call OpenCV for backend functionality where necessary, possibly writing D wrappers to make it more convenient.

like image 81
dsimcha Avatar answered Oct 09 '22 13:10

dsimcha