Image Filtering
Image Filtering
# Apply Gaussian blur to reduce noise # Wait for any key press to close the
window
blurred = cv2.GaussianBlur(gray, (5,
cv2.waitKey(0)
5), 0)
v2.destroyAllWindows()