A live video in which only blue color is detected
- Python >=3.1
- Python Libraries:
numpy
,cv2
- In this project you have to capture the video first using the primary camera of your system.
- Then you have read the frames and then convert the frames into HSV (Hue, Separation, Value)
- You have create the mask of the blue color that you want to extract from the live video by giving high and low range values.
- Finally you have to perform
bitwise-and
operation on the frame and the mask. - Display the video
Video in which blue color is detected