I'm having a problem with binarization of image (perhaps blurry in general) I have this image:
and after I've done binarization I get
How can I do better binarization? My goal is to have just black background and white letters and nothing else. I used adaptive threshold binarization
cv2.adaptiveThreshold(image_gs,255,cv2.ADAPTIVE_THRESH_MEAN_C,cv2.THRESH_BINARY ,41,3)
and I also have
kernel=np.ones(1,1)
Does anyone have idea how to do that?