Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

If you load image using imread() then the image will be in BGR format, OpenCV use BGR color space in default. See How the image matrix is stored in the memory.

So you need use the appropriate macro in cvtColor(),

means, CV_RGB2HSV should be CV_BGR2HSV on cvtColor()

Note: I assume you haven’t used cvtColor() to convert BGR to RGB before HSV conversion.