Re: Image analysis library recommendations

2013-04-29 Thread Stathis Sideris
There is a Clojure wrapper for OpenCV: http://nakkaya.com/vision.html On Tuesday, 23 April 2013 19:54:20 UTC+1, Nils Blum-Oeste wrote: > > Hi, > > I would like to do some image analysis with clojure. So I am looking for > good libraries for that. > > Most important would be a good support for ima

Re: Image analysis library recommendations

2013-04-26 Thread Mikera
Maybe my hobby project Clisk can be of some use: https://github.com/mikera/clisk It's Clojure based and geared towards image generation but does have some capabilities for image analysis and processing, particularly if you are interesting in warping / filtering etc. On Wednesday, 24 April 20

Re: Image analysis library recommendations

2013-04-26 Thread fmjrey
I recently came across BoofCV (http://boofcv.org/), an all Java library that is still being developed but looks already well featured. Never tried it though, let us know how that goes if you do. Cheers On Tuesday, April 23, 2013 8:54:20 PM UTC+2, Nils Blum-Oeste wrote: >

Re: Image analysis library recommendations

2013-04-26 Thread Herwig Hochleitner
Maybe the opencv stack can do something for you: http://opencv.org/ It's got java bindings. cheers 2013/4/26 Nils Blum-Oeste > Thx Cedric! > > Indeed I am using ClojureJVM. Getting images from filesystem isn't a big > deal. Of course javax.imageio does a good job here, like you said! > Also I

Re: Image analysis library recommendations

2013-04-26 Thread Nils Blum-Oeste
Thx Cedric! Indeed I am using ClojureJVM. Getting images from filesystem isn't a big deal. Of course javax.imageio does a good job here, like you said! Also I am not intersted (yet) in meta information of the images. My concern about image IO was more about not having to transform back and fort

Re: Image analysis library recommendations

2013-04-26 Thread Nils Blum-Oeste
I had a look at incanter/processing meanwhile. But this does not offer very much for image analysis. However processing will become useful to modify/render images. Next I am going to evaluate OpenCV which recently got Java bindings. Setting it up wasn't as straight forward as I thought but in t

Re: Image analysis library recommendations

2013-04-23 Thread Cedric Greevey
On Tue, Apr 23, 2013 at 2:54 PM, Nils Blum-Oeste wrote: > Furthermore I am looking for a nice image import/export. This does not > have to be the same library, but would be great if things work together > nicely. > If you're using ClojureJVM, at least, you have this already (and even the capacity

Image analysis library recommendations

2013-04-23 Thread Nils Blum-Oeste
Hi, I would like to do some image analysis with clojure. So I am looking for good libraries for that. Most important would be a good support for image segmentation. Tresholding, histogram based methods, edge detection and region growing are among the things I would like to have. Support for re