Ask Your Question

Revision history [back]

blur = cv2.GaussianBlur(img,(3,3),0)
smooth = cv2.addWeighted(blur,1.5,img,-0.5,0)

this will do the work

blur = cv2.GaussianBlur(img,(3,3),0)
cv2.GaussianBlur(img,(5,5),0)
smooth = cv2.addWeighted(blur,1.5,img,-0.5,0)

this will do the work work, you can adjust the kernel size for the blur according to your requirement..