I am trying to remove this watermark, I have tried a thousand ways but none of them work, any ideas, here is the code
if __name__ == '__main__':
img = cv2.imread("doc.jpg")
cv2.imshow("Image With Water Mark", img)
img1 = cv2.imread("doc.jpg")
_, thresh = cv2.threshold(img1, 150, 255, cv2.THRESH_BINARY)
#cv2.imshow('Image Without Water Mark', thresh)
cv2.imshow('Image Without Water Mark', thresh)
cv2.waitKey(0)
cv2.destroyAllWindows()
This is the result:
Some ideas of how solve this


This does a pretty good job. It may need additional smoothing. The text is all pretty much black and white, but the watermark is gray. So, convert everything less than 60% black to white.
However, be aware that what you're doing may be illegal. They add these watermarks for a reason.