Solving issue 1427: "HSV equalizer: wrong color lines"

This commit is contained in:
natureh
2012-06-18 23:36:30 +02:00
parent 5b925e9ac2
commit b5176679b8
3 changed files with 43 additions and 17 deletions

View File

@@ -169,6 +169,7 @@ class ImProcFunctions {
static void rgb2hsv (float r, float g, float b, float &h, float &s, float &v);
static void hsv2rgb (float h, float s, float v, float &r, float &g, float &b);
static void hsv2rgb01 (float h, float s, float v, float &r, float &g, float &b);
void xyz2srgb (float x, float y, float z, float &r, float &g, float &b);
void xyz2rgb (float x, float y, float z, float &r, float &g, float &b, double rgb_xyz[3][3]);
void Lab2XYZ(float L, float a, float b, float &x, float &y, float &z);