You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COLOR_BGR2HSV = 40, //!< convert RGB/BGR to HSV (hue saturation value) with H range 0..180 if 8 bit image, @ref color_convert_rgb_hsv "color conversions"
COLOR_BGR2HLS = 52, //!< convert RGB/BGR to HLS (hue lightness saturation) with H range 0..180 if 8 bit image, @ref color_convert_rgb_hls "color conversions"
599
599
COLOR_RGB2HLS = 53,
600
600
601
-
COLOR_HSV2BGR = 54, //!< backward conversions to RGB/BGR
601
+
COLOR_HSV2BGR = 54, //!< backward conversions HSV to RGB/BGR with H range 0..180 if 8 bit image
602
602
COLOR_HSV2RGB = 55,
603
603
604
604
COLOR_Lab2BGR = 56,
605
605
COLOR_Lab2RGB = 57,
606
606
COLOR_Luv2BGR = 58,
607
607
COLOR_Luv2RGB = 59,
608
-
COLOR_HLS2BGR = 60,
608
+
COLOR_HLS2BGR = 60,//!< backward conversions HLS to RGB/BGR with H range 0..180 if 8 bit image
609
609
COLOR_HLS2RGB = 61,
610
610
611
-
COLOR_BGR2HSV_FULL = 66,
611
+
COLOR_BGR2HSV_FULL = 66,//!< convert RGB/BGR to HSV (hue saturation value) with H range 0..255 if 8 bit image, @ref color_convert_rgb_hsv "color conversions"
612
612
COLOR_RGB2HSV_FULL = 67,
613
-
COLOR_BGR2HLS_FULL = 68,
613
+
COLOR_BGR2HLS_FULL = 68,//!< convert RGB/BGR to HLS (hue lightness saturation) with H range 0..255 if 8 bit image, @ref color_convert_rgb_hls "color conversions"
614
614
COLOR_RGB2HLS_FULL = 69,
615
615
616
-
COLOR_HSV2BGR_FULL = 70,
616
+
COLOR_HSV2BGR_FULL = 70,//!< backward conversions HSV to RGB/BGR with H range 0..255 if 8 bit image
617
617
COLOR_HSV2RGB_FULL = 71,
618
-
COLOR_HLS2BGR_FULL = 72,
618
+
COLOR_HLS2BGR_FULL = 72,//!< backward conversions HLS to RGB/BGR with H range 0..255 if 8 bit image
0 commit comments