Adding luminance impulse denoising and directional pyramid denoising.

This commit is contained in:
Emil Martinec
2010-09-13 03:35:02 -05:00
parent f33fd05b4e
commit f52e8a69b4
22 changed files with 1366 additions and 7 deletions

View File

@@ -105,6 +105,20 @@ class ColorDenoiseParamsEdited {
bool amount;
};
class ImpulseDenoiseParamsEdited {
public:
bool enabled;
};
class DirPyrDenoiseParamsEdited {
public:
bool enabled;
bool luma;
bool chroma;
};
class SHParamsEdited {
public:
@@ -246,7 +260,11 @@ class ParamsEdited {
WBParamsEdited wb;
ColorShiftParamsEdited colorShift;
LumaDenoiseParamsEdited lumaDenoise;
ColorDenoiseParamsEdited colorDenoise;
ColorDenoiseParamsEdited colorDenoise;
DirPyrDenoiseParamsEdited dirpyrDenoise;
ImpulseDenoiseParamsEdited impulseDenoise;
SHParamsEdited sh;
CropParamsEdited crop;
CoarseTransformParamsEdited coarse;