Fixed random color dots in dark areas using some Canon DCP profiles

see issue 1406
This commit is contained in:
Oliver Duis
2012-06-10 21:01:17 +02:00
parent 79527e99fb
commit ef21ae5e8d
5 changed files with 8 additions and 79 deletions

View File

@@ -26,9 +26,6 @@ void nearestInterp (const unsigned char* src, int sw, int sh, unsigned char* dst
void rotate (unsigned char* img, int& w, int& h, int deg);
void hflip (unsigned char* img, int w, int h);
void vflip (unsigned char* img, int w, int h);
void rgb2hsv (int r, int g, int b, float &h, float &s, float &v);
void hsv2rgb (float h, float s, float v, int &r, int &g, int &b);
void hsv2rgb (float h, float s, float v, float &r, float &g, float &b);
}
#endif