Python OpenCV
About Lesson

In this Python OpenCV lesson we are going to learn about Python OpenCV Converting Color Spaces, basically in this lesson we want to learn that how you can convert one color to another color in OpenCV, so there are more than 150 color-space conversion methods available in OpenCV. but we will look into only some of them which are most widely used ones like BGR↔Gray and BGR↔HSV.

 

So this is the complete code for this lesson.

 

 

For color space changing we can use cv2.cvtColor(), you need to give the image that you want to change and also the type of color space, so we have used BGR2GRAY, BGR2HSV, BGR2LAB.

 

 

 

Now run the complete code and this will be the result.

Python OpenCV Color Spaces
Python OpenCV Converting Color Spaces