Make Images Blurry and Convert to Grayscale
Learn to make images blurry and grayscale.
We'll cover the following...
You might’ve blurred photos or converted them to grayscale before with camera features or photo editing tools. These effects are commonplace and used to make images more suitable for a number of contexts. For example, flashbacks are often in grayscale. The OpenCV library provides us with functions to make images blurry or convert them to grayscale.
Make the image blurry
To make images blurry, we use the cv2.GaussianBlur() method of ...