Image recognition
Hi!
I have to developp a soft that performs simple forms recognition.
Does anybody have a good tutorial for that(with examples)?
Anyway, I don't know how to get a picture from a camera, how to load it in java, how to do simple transformations, and how to recognize circles.
About the computation times, what O.S. offers the better performance? (I have to work with a laptop...)
Any help would be appreciated!
Thanks
[466 byte] By [
obersong] at [2007-9-26 3:57:40]

> how to load it in java,
java.awt.Toolkit.getDefaultToolkit.getImage(..);
java.awt.Toolkit.getDefaultToolkit.createImage(..);
> how to recognize circles.
Look into Fourier Transformations.
>
> About the computation times, what O.S. offers the
> better performance? (I have to work with a
> laptop...)
For Java: the one with the most memory.
>
> Any help would be appreciated!
>
> Thanks
you are welcome
Spieler