Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between HSV and HSV_FULL in opencv?

I am not able to get proper information regarding the difference between them. And also I wanted to know whether converting 32 bit floating image to HSV is better or converting to HSV_FULL is better in opencv? Thank u.

like image 426
shreyas Avatar asked Feb 14 '14 14:02

shreyas


People also ask

What does HSV mean in OpenCV?

The HSV or Hue, Saturation and Value of a given object is the color space associated with the object in OpenCV where Hue represents the color, Saturation represents the greyness and Value represents the brightness and it is used to solve the problems related to computer vision because of its better performance when ...

What is the range of HSV?

1. HSV Color Scale: The HSV (which stands for Hue Saturation Value) scale provides a numerical readout of your image that corresponds to the color names contained therein. Hue is measured in degrees from 0 to 360.

What range of values are supported in OpenCV's representation of Hue?

In OpenCV HSV format, hue is represented by an integer from 0 to 179, while saturation and value are 0 to 255.


1 Answers

  • For HSV, range of Hue is 0-180.

  • For HSV_FULL, range of Hue is 0-360.

like image 170
Abid Rahman K Avatar answered Sep 28 '22 01:09

Abid Rahman K