abolbridge
abolbridge

Reputation: 13

Object Recognition with Android

I've been thinking about working on an application. You take a picture of something at a yard sale and it compares it against an image database.

For example say you take a picture of a spoon, and compares the image taken against images in the database and throws back to the user the top 5 possible matches.

Is this possible with current Android?

If so point me in the right direction, for stuff I'd need.

Thanks, abolbridge

Look forward to your guys feedback.

Upvotes: 1

Views: 917

Answers (2)

MrSok
MrSok

Reputation: 21

Check out openCV, as it contains a lot of useful object recognition functions and can be used on android. However, this approach will push the limits of the phones CPU and more so, its memory when using higher resolution images. A server-side implementation may be more appropiate.

Upvotes: 1

Beto Frega
Beto Frega

Reputation: 976

That is rather possible, but too much CPU consuming and therefore not possible on Android itself. You'd have to build a serverside application for that.

It is going to be hard though. Quite.

Take a look at Google Goggles for an idea. The image processing is entirely made on the server side.

Upvotes: 1

Related Questions