Thread overview
generic image processing library?
Apr 14, 2014
Trass3r
Apr 14, 2014
w0rp
Apr 15, 2014
renoX
Apr 15, 2014
Craig Dillabaugh
April 14, 2014
Is there any generic D image processing library similar to Adobe's boost::GIL?
April 14, 2014
On Monday, 14 April 2014 at 11:33:47 UTC, Trass3r wrote:
> Is there any generic D image processing library similar to Adobe's boost::GIL?

There is CyberShadow's graphics processing library. http://blog.thecybershadow.net/2014/03/21/functional-image-processing-in-d/ It probably just needs to be glued together with some file format support through libpng and so on.
April 15, 2014
Maybe you could port embed Halide ( http://halide-lang.org/ ) in D?

I'm joking as it must be hard work to port this, but I find super-impressive that they were able to separate the algorithm from the "optimizations schedules" (a la SQL) and still being able to have good performances..

renoX


April 15, 2014
On Tuesday, 15 April 2014 at 08:46:31 UTC, renoX wrote:
> Maybe you could port embed Halide ( http://halide-lang.org/ ) in D?
>
> I'm joking as it must be hard work to port this, but I find super-impressive that they were able to separate the algorithm from the "optimizations schedules" (a la SQL) and still being able to have good performances..
>
> renoX

I couldn't even get Halide to work.  Can't remember the problem now, but I think it is still pretty experimental.  Does sound cool though, and in all fairness I generally have a hard time getting most things to work :o(