I am newbie to the CV field and I am on a relatively simple task, I want to analyse dominoes rock values.
I used blob analysis method, which wasn't really efficient on android for that I used a pure java code which tends to be slower than native C. And background data caused me problems as it could have blobs too.
After too much reading I ran through 'template matching' method which sounds like the best to me, for its low resources need and rotation/scaling tolerance, I can easily save the template of every piece of the dominoes and then match it in the coming image for analysis and counting.
Now all I want is your guidance to libraries/methods that can help me implementing template matching, I prefer pure java but can use native C libs if no choice is found.
P.S: If you find me wrong regarding algorithm I chose, please provide me with your advice.