I\'m trying to train tesseract to recognize numbers from real images of gas meters.
The images that I use for training are made with a camera, for this reason there are
I suggest you to:
I recommend you to use Tesseract's API themselves to enhance the image (denoise, normalize, sharpen...)
for example : Boxa * tesseract::TessBaseAPI::GetConnectedComponents(Pixa** pixa)
(it allows you to get to the bounding boxes of each character)
Pix* pimg = tess_api->GetThresholdedImage();
Here you find few examples