I am learning image processing in which I am trying to sharpen the edges of the images using opencv in python , i have reduced the noise as much as i could but now i want to make the edges of the image more clear , i have tried cv2.Canny() but it didn't work out as much.
this is the image
After applying c2.Canny()
but I am trying to more sharp the words border or edges
this is my code
import cv2
import matplotlib.pyplot as plt
img_1 = cv2.imread('noise/1.png',cv2.IMREAD_GRAYSCALE)
edges = cv2.Canny(img_1,200,200)
plt.imshow(edges)






