I'm looking to do some image processing in Java and I'll be developing in Ubuntu with Eclipse. So here is my objective:

From a greyscale image, I would like to be able to detect certain sized objects and draw a rectangular frame around them. However, the catch is that this image is captured from a thermal imaging camera so to detect body heat the pixels will have a value within a certain range. After detecting all the objects in the image, I will need to count them, but that's later.

So here's my challenge. Which tools/apis/open classes can I use to do something like this. I looked around and found some basic manipulations such as rotate, crop, resize. But haven't really found anything I can use.

Where should I look/start?

thanks a lot in advance

link|improve this question

really? No one knows how I should go about this or which tools to use? – AtharvaI Oct 12 '10 at 16:36
feedback

2 Answers

up vote 1 down vote accepted

ImageJ is very useful: http://rsbweb.nih.gov/ij/

Although ImageJ is set up as a GUI, you can use it as a library too (I do that too)

You'll have to search for a proper object detection plugin (but there are some floating around...)

good luck! Eelco

link|improve this answer
hey Eelco, thanks a lot. I looked around and found OpenCV which is cross platform as well and has a lot more documentation and a support community. I settled for OpenCV in C/C++. – AtharvaI Dec 31 '10 at 0:00
feedback

On this page you can find open-source tool for image processing and image mining: http://spl.utko.feec.vutbr.cz/en/image-processing-extension-for-rapidminer-5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.