Hi!
I'm looking for a Java library for circle recognition in a supplied bitmap. My Java knowledge is too basic to implement eg. Hough transform efficiently (Java newbie).
Thanks!
Hi!
I'm looking for a Java library for circle recognition in a supplied bitmap. My Java knowledge is too basic to implement eg. Hough transform efficiently (Java newbie).
Thanks!
You might want to have a look at the implementation in ImageJ, see here.
If you can't transform a well-known algorithm like the Hough transfrom into Java code you should probably concentrate on learning the Java basics prior to even thinking about using a library for your image processing tasks. I mean, the basics really aren't that hard to learn and without them you won't be able to create anything that goes beyond a simple library call. And besides, implementing the Hough transform in Java is basically the same as implementing it in any other language.
No offense, just my opinion.