Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java framework for image pattern recognition? [closed]

I'm looking for a Java framework to help with some data mining specific to images. We have a set of historical images that I would like to categorize and classify. I'm was hoping to find something like weka http://www.cs.waikato.ac.nz/ml/weka/ or Marsyas http://marsyas.sness.net but more specific to sifting through image data to find patterns. Any suggestions?

like image 699
D.C. Avatar asked Jan 14 '10 06:01

D.C.


2 Answers

What about using the OpenCV library for Processing? Technically, Processing is not Java, but it runs on the JVM and shouldn't be difficult to get working. OpenCV is the standard choice for computer vision, which is what you're trying to do.

like image 182
BobMcGee Avatar answered Sep 17 '22 20:09

BobMcGee


I played around with Neuroph (http://neuroph.sourceforge.net) which is a neural network framework for Java, and they have a very nice image recognition tutorial that I think everybody should read, but specially if you're dealing with image recognition: http://neuroph.sourceforge.net/image_recognition.html

like image 34
tog000 Avatar answered Sep 19 '22 20:09

tog000