RaulPL
RaulPL

Reputation: 241

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

Upvotes: 13

Views: 630

Answers (3)

cLupus
cLupus

Reputation: 563

DMagik seem to offer the capabilities of ImageMagick for D.

Upvotes: 0

Vladimir Panteleev
Vladimir Panteleev

Reputation: 25187

Derelict has bindings for DevIL and SDL_image.

Upvotes: 4

dsimcha
dsimcha

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

Related Questions