I tried to run OCR on multiple scanned sheets with numbers like this image (All with same background, digits only):

But all trials failed! I tried offline OCRs: gocr, tesseract and couple of online OCRs; but all TOTALLY failed!
What should I do?
I tried to run OCR on multiple scanned sheets with numbers like this image (All with same background, digits only):

But all trials failed! I tried offline OCRs: gocr, tesseract and couple of online OCRs; but all TOTALLY failed!
What should I do?
First you must tweak those images. I recommend a batch tool like XnViewMP which is free and multiplatform.
It has a file explorer. Select all your images, then go to Tools - Batch convert. Add actions like I did:

Here are my actions:
Don't forget to save as tiff (See Output tab). After that I run tesseract:
tesseract test.tif text -psm 7
Note I selected PSM mode 7: Treat the image as a single text line. If you have multiple lines you'll probably need to use mode 6 or 3.
And here are the contents of text.txt output file:
570 394 666 638 043
I tried to recognise your image with OCR technology by ABBYY:

More information about ABBYY's products you can find at abbyy.com.
I work for ABBYY and ready to help, if you have questions.
import cv2
import numpy as np
import pytesseract
im= cv2.imread('noisyNumbers.png',cv2.IMREAD_GRAYSCALE)
cv2.imshow('Gray', im)
cv2.imwrite('noisyNumbers.jpg', im)
print(pytesseract.image_to_string(Image.open('noisyNumbers.jpg')))