Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Coin Recognition on Android

I am currently developing an Android application that is capable of taking an existing image of a coin, or using an in-built camera to scan a single coin (very much like Google Goggles does). I am using OpenCV for Android.

My question is as follows: What method(s) would be most appropriate for performing Coin Recognition on Android using OpenCV?

The method I have tried so far is below (maybe I'm doing it wrong, or I'm just going down the wrong route completely)

I am currently using OpenCV for Android (no native code!) and am using various Feature Detection algorithms to identify key points in an image (i.e. ORB, FAST, STAR). I believed that it would simply be a matter of calculating the Euclidean distance between each of these keypoints within an extracted image and a set of known test data to identify the most similar images (and therefore recognise the coin), but it turns out that this method alone is not appropriate as effects such as lighting, coin rotation etc. have too much of an effect on the Feature extraction (plus coins have surprisingly similar features...)

Generically speaking I am looking for advice on whether any form of pre-image processing would be useful? What alternative methods are available? Or any tips on how to improve my current methods.

NOTE: I have seen plenty of documents out there about Coin Detection, but I am looking at Coin Recognition specifically.

Thanks in advance!

like image 962
kickbackjack Avatar asked Oct 05 '22 22:10

kickbackjack


1 Answers

OpenCV is a good start. Just take a look at this paper : http://www.inf.u-szeged.hu/~ssip/2006/projects/team6/coin.pdf

Edit: Check this thread Reshaping noisy coin into a circle form

like image 169
Goot Avatar answered Oct 18 '22 01:10

Goot