Aaron Decker
Aaron Decker

Reputation: 558

Object Recognition/Detection?

Here is my issue, I need to detect a bolt and quarter in an image, I have been searching and found OpenCV but from what I see its not in Java yet. How would you guys go about solving this?

Upvotes: 0

Views: 7757

Answers (2)

jlengrand
jlengrand

Reputation: 12827

If you are using Java, I would consider using a fully portable solution, such as ImageJ. There are already some object detection toolboxes available ;)

See this SO post for more details.

Upvotes: 1

IUnknown
IUnknown

Reputation: 898

There is actually a Java interface to OpenCV that you can use. Its open source and hosted on google Code.

javaCV

There's also a partial port of opencv to Java. Available here

Upvotes: 1

Related Questions