Merge remote-tracking branch 'dev/newlocallab' into newlocallab

This commit is contained in:
Pandagrapher
2020-04-20 12:54:09 +02:00
178 changed files with 14162 additions and 6468 deletions

View File

@@ -73,9 +73,13 @@ protected:
ColorTemp currWB;
ColorTemp autoWB;
ColorTemp currWBloc;
ColorTemp autoWBloc;
ColorTemp currWBitc;
double lastAwbEqual;
double lastAwbTempBias;
Glib::ustring lastAwbauto;
Glib::ustring monitorProfile;
RenderingIntent monitorIntent;
@@ -135,6 +139,7 @@ protected:
NoiseCurve noiseLCurve;
NoiseCurve noiseCCurve;
WavCurve wavCLVCurve;
Wavblcurve wavblcurve;
WavOpacityCurveRG waOpacityCurveRG;
WavOpacityCurveBY waOpacityCurveBY;
WavOpacityCurveW waOpacityCurveW;
@@ -170,6 +175,7 @@ protected:
AutoRadiusListener *pdSharpenAutoRadiusListener;
FrameCountListener *frameCountListener;
ImageTypeListener *imageTypeListener;
FilmNegListener *filmNegListener;
AutoColorTonListener* actListener;
AutoChromaListener* adnListener;
WaveletListener* awavListener;
@@ -427,6 +433,7 @@ public:
void getCamWB (double& temp, double& green) override;
void getSpotWB (int x, int y, int rectSize, double& temp, double& green) override;
bool getFilmNegativeExponents(int xA, int yA, int xB, int yB, std::array<float, 3>& newExps) override;
bool getRawSpotValues(int x, int y, int spotSize, std::array<float, 3>& rawValues) override;
void getAutoCrop (double ratio, int &x, int &y, int &w, int &h) override;
bool getHighQualComputed() override;
void setHighQualComputed() override;
@@ -557,6 +564,11 @@ public:
imageTypeListener = itl;
}
void setFilmNegListener (FilmNegListener* fnl) override
{
filmNegListener = fnl;
}
void saveInputICCReference (const Glib::ustring& fname, bool apply_wb) override;
InitialImage* getInitialImage () override