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...

link|improve this question
1  
+1 for liking D. lol, jk, good question too. :-) – Mehrdad Jul 22 '11 at 0:55
feedback

2 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.

link|improve this answer
feedback

Derelict has bindings for DevIL and SDL_image.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.