Merge branch 'dev' into spot-removal-tool
This commit is contained in:
@@ -27,7 +27,6 @@
|
||||
#include "imagesource.h"
|
||||
#include "improcfun.h"
|
||||
#include "LUT.h"
|
||||
#include "procevents.h"
|
||||
#include "rtengine.h"
|
||||
|
||||
#include "../rtgui/threadutils.h"
|
||||
@@ -56,7 +55,7 @@ class TweakOperator;
|
||||
* but using this class' LUT and other precomputed parameters. The main preview area is displaying a non framed Crop object,
|
||||
* while detail windows are framed Crop objects.
|
||||
*/
|
||||
class ImProcCoordinator : public StagedImageProcessor
|
||||
class ImProcCoordinator final : public StagedImageProcessor
|
||||
{
|
||||
|
||||
friend class Crop;
|
||||
@@ -76,9 +75,13 @@ protected:
|
||||
|
||||
ColorTemp currWB;
|
||||
ColorTemp autoWB;
|
||||
ColorTemp currWBloc;
|
||||
ColorTemp autoWBloc;
|
||||
ColorTemp currWBitc;
|
||||
|
||||
double lastAwbEqual;
|
||||
double lastAwbTempBias;
|
||||
Glib::ustring lastAwbauto;
|
||||
|
||||
Glib::ustring monitorProfile;
|
||||
RenderingIntent monitorIntent;
|
||||
@@ -138,7 +141,9 @@ protected:
|
||||
NoiseCurve noiseLCurve;
|
||||
NoiseCurve noiseCCurve;
|
||||
WavCurve wavCLVCurve;
|
||||
Wavblcurve wavblcurve;
|
||||
WavOpacityCurveRG waOpacityCurveRG;
|
||||
WavOpacityCurveSH waOpacityCurveSH;
|
||||
WavOpacityCurveBY waOpacityCurveBY;
|
||||
WavOpacityCurveW waOpacityCurveW;
|
||||
WavOpacityCurveWL waOpacityCurveWL;
|
||||
@@ -173,6 +178,7 @@ protected:
|
||||
AutoRadiusListener *pdSharpenAutoRadiusListener;
|
||||
FrameCountListener *frameCountListener;
|
||||
ImageTypeListener *imageTypeListener;
|
||||
FilmNegListener *filmNegListener;
|
||||
|
||||
AutoColorTonListener* actListener;
|
||||
AutoChromaListener* adnListener;
|
||||
@@ -286,6 +292,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;
|
||||
@@ -394,6 +401,11 @@ public:
|
||||
imageTypeListener = itl;
|
||||
}
|
||||
|
||||
void setFilmNegListener (FilmNegListener* fnl) override
|
||||
{
|
||||
filmNegListener = fnl;
|
||||
}
|
||||
|
||||
void saveInputICCReference (const Glib::ustring& fname, bool apply_wb) override;
|
||||
|
||||
InitialImage* getInitialImage () override
|
||||
|
Reference in New Issue
Block a user