I have this set of images I want to de-noise in order to run OCR on it:
I am trying to read the 7810 from the image.
I have tried
cv2.threshold(img, 128, 255,cv2.THRESH_BINARY_INV | cv2.THRESH_OTSU) cv2.fastNlMeansDenoising(img,None,60,10,20) and some morphological expressions but none seem to work to clear this image sufficiently.
Any recommendations on how to filter this image sufficiently that I could run OCR or some ML detection scripts on this like pytesseract?


