Reputation: 67
Hi i have bunch of images of tyres, we need to detect and recognize the text on the tyres, here i am facing difficulties to detect the text, because the text and background of the tyre are same, i have tried with EAST text detector and yolo text detector ( without own data train ), is there any better solutions to detect the text from these kind of background images
here i need to detect only the 10 digit serial number like "75R-0006884"
Upvotes: 1
Views: 895
Reputation: 116
Some preprocessing before passing the images in through a non-retrained deep network might help! Try binarizing/grayscaling the image and playing with those thresholds to see what gives maximum contrast.
But I gotta say, you might have to retrain an existing network to achieve good performance.
Upvotes: 0