Wavelet Levels - My kingdom for more wavelets - issue2594

This commit is contained in:
jdc
2015-01-29 07:07:00 +01:00
parent bc856c2377
commit 13e26d3979
39 changed files with 4008 additions and 136 deletions

View File

@@ -282,6 +282,13 @@ namespace rtengine {
virtual void BWChanged (double redbw, double greenbw, double bluebw) {}
};
class WaveletListener {
public :
virtual ~WaveletListener() {}
virtual void wavChanged (double nlevel) {}
};
/** This class represents a detailed part of the image (looking through a kind of window).
@@ -373,6 +380,7 @@ namespace rtengine {
virtual void setAutoBWListener (AutoBWListener* l) =0;
virtual void setAutoColorTonListener (AutoColorTonListener* l) =0;
virtual void setAutoChromaListener (AutoChromaListener* l) =0;
virtual void setWaveletListener (WaveletListener* l) =0;
virtual ~StagedImageProcessor () {}