OpenCV

OpenCV

How to Convert Color Video into Grayscale using OpenCV in Python

How to Convert Color Video into Grayscale using OpenCV in Python

You can convert color video into grayscale using OpenCV (CV2) in Python by following the given code. I highly recommend you get the “Computer Vision: Models, Learning, and Inference Book” to learn Computer Vision. Convert Color Video into Grayscale using CV2 If OpenCV is not installed in your system, then install it using This Method. After installation, …

How to Convert Color Video into Grayscale using OpenCV in Python Read More »

How to blur image in OpenCV Python

How to blur image in OpenCV Python

You can blur an image in OpenCV Python by any of the given methods. I highly recommend you get the “Computer Vision: Models, Learning, and Inference Book” to learn Computer Vision. Method 1: Averaging Method 2: Gaussian Blurring Method 3: Median Blurring Method 4: Bilateral Filtering