Experiment - Color spaces (RGB, BGR, grayscale, HSV)
Problem:You have an image loaded in BGR format using OpenCV. You want to convert it to RGB, grayscale, and HSV color spaces to prepare it for different computer vision tasks.
Current Metrics:Currently, the image is only in BGR format, which causes incorrect color display when shown with libraries expecting RGB. No color space conversions are applied.
Issue:The image colors appear wrong when displayed, and grayscale or HSV representations are not available for further processing.