- I have a function in python which takes in RGB values and converts them HSV values.
- Now I would want to write the Hue component, Value component and Saturation component of this image into separate images.
- How to write these images using opencv.
- I know that cv2.imwrite takes in a 3D array and considers this to be an image in the RGB colour space.
- How to tell opencv that it should consider the HSV colour space and not RGB