Open In App
Related Articles

Opening multiple color windows to capture using OpenCV in Python

Improve Article
Improve
Save Article
Save
Like Article
Like

OpenCV is an open source computer vision library that works with many programming languages and provides a vast scope to understand the subject of computer vision.In this example we will use OpenCV to open the camera of the system and capture the video in two different colors.
Approach: With the libraries available in OpenCV-Python below we will open two different windows, one window will show live camera result in coloured form and the another will display the same in grayscale (black and white).The code is as below
Libraries Used:

  • cv2
  • numpy

cv2 library installs automatically when openCV is installed.In order to install numpy use the following command at the cmd/linux terminal:
pip install numpy




# importing the required modules
import cv2
import numpy as np
  
# capturing from the first camera attached
cap = cv2.VideoCapture(0)
  
# will continue to capture until 'q' key is pressed
while True:
    ret, frame = cap.read()
  
    # Capturing in grayscale
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
      
    cv2.imshow('frame', frame)
    cv2.imshow('gray', gray)
  
    # Program will terminate when 'q' key is pressed
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
  
# Releasing all the resources
cap.release()
cv2.destroyAllWindows()


Output:

Run the above code on your own system so that you can install the required libraries and more

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 04 Jan, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials