I have hard, messy Scanned Images with a noisy background as below
I tried this code, but didn’t get the contours.
image = cv2.imread(r'Images\2.png')
orig = image.copy()
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
gray = cv2.GaussianBlur(gray, (5, 5), 0)
edged = cv2.Canny(gray, 75, 200)
cnts, hierarchy = cv2.findContours(
edged.copy(), cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE)
contour_img = image.copy()
cv2.drawContours(contour_img, cnts, -1, (0, 255, 0), 2)