getHsvValueComponent method

int getHsvValueComponent()

Gets the Value (V) component in the HSV color space

Implementation

int getHsvValueComponent()
{
  return Math.max(Math.max(red, green), blue);
}