1 | initial version |
blur = cv2.GaussianBlur(img,(3,3),0)
smooth = cv2.addWeighted(blur,1.5,img,-0.5,0)
this will do the work
2 | No.2 Revision |
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..