moved softlight later in the pipeline

Gives a better result, more suitable to the final fine-tuning
This commit is contained in:
Alberto Griggio
2018-07-24 17:00:54 +02:00
parent 18f812d96a
commit fce2d61b0c
8 changed files with 44 additions and 36 deletions

View File

@@ -343,7 +343,7 @@ public:
void localContrast(LabImage *lab);
void colorToningLabGrid(LabImage *lab, int xstart, int xend, int ystart, int yend, bool MultiThread);
void shadowsHighlights(LabImage *lab);
void softLight(float *red, float *green, float *blue, int istart, int jstart, int tW, int tH, int TS);
void softLight(LabImage *lab);
Image8* lab2rgb(LabImage* lab, int cx, int cy, int cw, int ch, const procparams::ColorManagementParams &icm, bool consider_histogram_settings = true);
Imagefloat* lab2rgbOut(LabImage* lab, int cx, int cy, int cw, int ch, const procparams::ColorManagementParams &icm);