small speeduo for denoise

This commit is contained in:
heckflosse
2019-03-16 23:35:39 +01:00
parent a09e319216
commit 25625c6842
3 changed files with 78 additions and 54 deletions

View File

@@ -617,6 +617,7 @@ public:
*/
static void XYZ2Lab(float x, float y, float z, float &L, float &a, float &b);
static void RGB2Lab(float *X, float *Y, float *Z, float *L, float *a, float *b, const float wp[3][3], int width);
static void Lab2RGBLimit(float *L, float *a, float *b, float *R, float *G, float *B, const float wp[3][3], float limit, float afactor, float bfactor, int width);
static void RGB2L(float *X, float *Y, float *Z, float *L, const float wp[3][3], int width);
/**