Coin Recognition on Android

半腔热情 提交于 2019-12-04 12:37:12

问题


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!


回答1:


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



来源:https://stackoverflow.com/questions/13456366/coin-recognition-on-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!