Thursday, January 29, 2026
HomeLanguagesConverting Color video to grayscale using OpenCV in Python

Converting Color video to grayscale using OpenCV in Python

OpenCV is a huge open-source library for computer vision, machine learning, and image processing. It can process images and videos to identify objects, faces, or even the handwriting of a human. In this article, we will see how to convert a colored video to a gray-scale format.

Approach:

  1. Import the cv2 module.
  2. Read the video file to be converted using the cv2.VideoCapture() method.
  3. Run an infinite loop.
  4. Inside the loop extract the frames of the video using the read() method.
  5. Pass the frame to the cv2.cvtColor() method with cv2.COLOR_BGR2GRAY as a parameter to convert it into gray-scale.
  6. Display the frame using the cv2.imshow() method.

Example: Suppose we have the video file CountdownTimer.mov as the input.

Python3




# importing the module
import cv2
  
# reading the video
source = cv2.VideoCapture('Countdown Timer.mov')
  
# running the loop
while True:
  
    # extracting the frames
    ret, img = source.read()
      
    # converting to gray-scale
    gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
  
    # displaying the video
    cv2.imshow("Live", gray)
  
    # exiting the loop
    key = cv2.waitKey(1)
    if key == ord("q"):
        break
      
# closing the window
cv2.destroyAllWindows()
source.release()


 

 

Output:

 

 

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32477 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6848 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6916 POSTS0 COMMENTS