DR Compression: updated defaults and renamed "Threshold" to "Detail" in the GUI
Fixes #4912
This commit is contained in:
@@ -725,7 +725,7 @@ HISTORY_MSG_485;Lens Correction
|
||||
HISTORY_MSG_486;Lens Correction - Camera
|
||||
HISTORY_MSG_487;Lens Correction - Lens
|
||||
HISTORY_MSG_488;Dynamic Range Compression
|
||||
HISTORY_MSG_489;DRC - Threshold
|
||||
HISTORY_MSG_489;DRC - Detail
|
||||
HISTORY_MSG_490;DRC - Amount
|
||||
HISTORY_MSG_491;White Balance
|
||||
HISTORY_MSG_492;RGB Curves
|
||||
@@ -2046,7 +2046,7 @@ TP_SOFTLIGHT_STRENGTH;Strength
|
||||
TP_TM_FATTAL_AMOUNT;Amount
|
||||
TP_TM_FATTAL_ANCHOR;Anchor
|
||||
TP_TM_FATTAL_LABEL;Dynamic Range Compression
|
||||
TP_TM_FATTAL_THRESHOLD;Threshold
|
||||
TP_TM_FATTAL_THRESHOLD;Detail
|
||||
TP_VIBRANCE_AVOIDCOLORSHIFT;Avoid color shift
|
||||
TP_VIBRANCE_CURVEEDITOR_SKINTONES;HH
|
||||
TP_VIBRANCE_CURVEEDITOR_SKINTONES_LABEL;Skin-tones
|
||||
|
@@ -1532,8 +1532,8 @@ bool EPDParams::operator !=(const EPDParams& other) const
|
||||
|
||||
FattalToneMappingParams::FattalToneMappingParams() :
|
||||
enabled(false),
|
||||
threshold(0),
|
||||
amount(30),
|
||||
threshold(30),
|
||||
amount(20),
|
||||
anchor(50)
|
||||
{
|
||||
}
|
||||
|
@@ -31,7 +31,8 @@ FattalToneMapping::FattalToneMapping(): FoldableToolPanel(this, "fattal", M("TP_
|
||||
EvTMFattalAnchor = m->newEvent(HDR, "HISTORY_MSG_TM_FATTAL_ANCHOR");
|
||||
|
||||
amount = Gtk::manage(new Adjuster (M("TP_TM_FATTAL_AMOUNT"), 1., 100., 1., 30.));
|
||||
threshold = Gtk::manage(new Adjuster (M("TP_TM_FATTAL_THRESHOLD"), -100., 100., 1., 0.0));
|
||||
threshold = Gtk::manage(new Adjuster (M("TP_TM_FATTAL_THRESHOLD"), -100., 300., 1., 0.0));
|
||||
threshold->setLogScale(10, 0);
|
||||
Gtk::Image *al = Gtk::manage(new RTImage("circle-black-small.png"));
|
||||
Gtk::Image *ar = Gtk::manage(new RTImage("circle-white-small.png"));
|
||||
anchor = Gtk::manage(new Adjuster(M("TP_TM_FATTAL_ANCHOR"), 1, 100, 1, 50, al, ar));
|
||||
|
Reference in New Issue
Block a user