Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
some conversion routines to convert between different color spaces More...
Functions | |
void | Hsv2Rgb (float h, float s, float v, float &r, float &g, float &b) |
convert a HSV color to RGB color, H from 0 to 360, all other parameters 0 to 1 More... | |
void | Rgb2Hsv (float r, float g, float b, float &h, float &s, float &v) |
convert a RGB color to HSV color, rgb parameters from 0 to 1 More... | |
some conversion routines to convert between different color spaces
void mitk::ColorConversions::Hsv2Rgb | ( | float | h, |
float | s, | ||
float | v, | ||
float & | r, | ||
float & | g, | ||
float & | b | ||
) |
convert a HSV color to RGB color, H from 0 to 360, all other parameters 0 to 1
Definition at line 32 of file mitkColorConversions.cpp.
Referenced by mitk::ColorSequenceCycleH::GetNextColor().
void mitk::ColorConversions::Rgb2Hsv | ( | float | r, |
float | g, | ||
float | b, | ||
float & | h, | ||
float & | s, | ||
float & | v | ||
) |
convert a RGB color to HSV color, rgb parameters from 0 to 1
Definition at line 95 of file mitkColorConversions.cpp.