Hi all,
It's the first time that I use OpenCV and I need to understand if this is the right technology to do this thing.
I want to extract some data from this scoreboard:

In particular I need the players name and their score (for example 6,0 - H.Son).
The first thing that I've tried to do is to recognize the t-shirt to execute an OCR on a part of image and extract name and score.
To do this I've used template matching ([this](https://docs.opencv.org/master/d4/dc6/tutorial_py_template_matching.html)) but unfortunately it doesn't works very well when the t-shirts change (the shape is always the same but the colors and the logos inside them can change, however I have the entire dataset of t-shirts, around 1000).
Do you have any techniques or tutorial to recommend to solve this problem and identify score and names near the t-shirt in a good way? At the moment I'm using Python
↧