Reputation: 241
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...
Upvotes: 13
Views: 630
Reputation: 68750
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.
Upvotes: 8