Merge remote-tracking branch 'dev/newlocallab' into newlocallab
This commit is contained in:
@@ -356,6 +356,8 @@ public :
|
||||
virtual void autoCamChanged(double ccam, double ccamout) = 0;
|
||||
virtual void adapCamChanged(double cadap) = 0;
|
||||
virtual void ybCamChanged(int yb) = 0;
|
||||
virtual void wbCamChanged(double tem, double tin) = 0;
|
||||
|
||||
};
|
||||
|
||||
class AutoChromaListener
|
||||
@@ -418,7 +420,7 @@ class AutoWBListener
|
||||
{
|
||||
public:
|
||||
virtual ~AutoWBListener() = default;
|
||||
virtual void WBChanged(double temp, double green) = 0;
|
||||
virtual void WBChanged(double temp, double green, float studgood) = 0;
|
||||
};
|
||||
|
||||
class FrameCountListener
|
||||
@@ -464,6 +466,13 @@ public:
|
||||
|
||||
};
|
||||
|
||||
class FilmNegListener
|
||||
{
|
||||
public:
|
||||
virtual ~FilmNegListener() = default;
|
||||
virtual void filmBaseValuesChanged(std::array<float, 3> rgb) = 0;
|
||||
};
|
||||
|
||||
/** This class represents a detailed part of the image (looking through a kind of window).
|
||||
* It can be created and destroyed with the appropriate members of StagedImageProcessor.
|
||||
* Several crops can be assigned to the same image. */
|
||||
@@ -551,6 +560,8 @@ public:
|
||||
virtual void getCamWB (double& temp, double& green) = 0;
|
||||
virtual void getSpotWB (int x, int y, int rectSize, double& temp, double& green) = 0;
|
||||
virtual bool getFilmNegativeExponents(int xA, int yA, int xB, int yB, std::array<float, 3>& newExps) = 0;
|
||||
virtual bool getRawSpotValues (int x, int y, int spotSize, std::array<float, 3>& rawValues) = 0;
|
||||
|
||||
virtual void getAutoCrop (double ratio, int &x, int &y, int &w, int &h) = 0;
|
||||
|
||||
virtual void saveInputICCReference (const Glib::ustring& fname, bool apply_wb) = 0;
|
||||
@@ -576,6 +587,7 @@ public:
|
||||
virtual void setWaveletListener (WaveletListener* l) = 0;
|
||||
virtual void setImageTypeListener (ImageTypeListener* l) = 0;
|
||||
virtual void setLocallabListener (LocallabListener* l) = 0;
|
||||
virtual void setFilmNegListener (FilmNegListener* l) = 0;
|
||||
|
||||
virtual void setMonitorProfile (const Glib::ustring& monitorProfile, RenderingIntent intent) = 0;
|
||||
virtual void getMonitorProfile (Glib::ustring& monitorProfile, RenderingIntent& intent) const = 0;
|
||||
|
Reference in New Issue
Block a user