You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# bluring or smoothing the inverted image with the kernel size (10,10)
img_blur = cv2.blur(img_invert, (10, 10))
"""The Dodge blend function divides the bottom layer by the inverted top layer. This lightens the bottom layer depending on the value of the top layer. We have the blurred image, which highlights the boldest edges."""