vote up 0 vote down star

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!

flag

78% accept rate

2 Answers

vote up 2 vote down

You might want to have a look at the implementation in ImageJ, see here.

link|flag
vote up 1 vote down

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.

link|flag
I've learned Java enough, I think, to implement this; however I need efficient implementation as it is to be used on mobile dev. – Marcin Gil Feb 19 at 14:00
Have you tried it? The main key to efficiency is the choice of the algorithm, so perhaps it will work great even with a very straight-forward implementation of the Hough transform. Give it a try and if it really performs bad, feel free to ask again. – Smasher Feb 19 at 14:49
I just saw that you seem to have a lot of experience, so my answer might have been a bit inappropriate. I expected a beginner and I don't think that rushing into things without knowing the basics is a good way to go. – Smasher Feb 19 at 14:52
;) I can do basic stuff now in Java; the only problem is that I have a lot of C++ thinking in the head - and same things are done differently in C++ and Java. My C++ impl. is fast enough; my Java one - not. – Marcin Gil Mar 24 at 6:55

Your Answer

Get an OpenID
or

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