From a45ae2d9709bb73fade1f3a4c3224d1d44eaeea7 Mon Sep 17 00:00:00 2001 From: Desmis Date: Thu, 9 May 2019 11:12:16 +0200 Subject: [PATCH] Chnage default settings Retinex --- rtengine/procparams.cc | 8 ++++---- rtgui/locallab.cc | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rtengine/procparams.cc b/rtengine/procparams.cc index b6f33ea25..87c15c763 100644 --- a/rtengine/procparams.cc +++ b/rtengine/procparams.cc @@ -2470,14 +2470,14 @@ LocallabParams::LocallabSpot::LocallabSpot() : expreti(false), retinexMethod("high"), str(0), - chrrt(40), + chrrt(0), neigh(170), vart(70), - dehaz(25), - sensih(70), + dehaz(0), + sensih(30), localTgaincurve{(double)FCT_MinMaxCPoints, 0.0, 0.12, 0.35, 0.35, 0.70, 0.50, 0.35, 0.35, 1.00, 0.12, 0.35, 0.35}, inversret(false), - softradiusret(70.0), + softradiusret(0.0), // Sharpening expsharp(false), sharcontrast(20), diff --git a/rtgui/locallab.cc b/rtgui/locallab.cc index 9b40b3672..1b6288d67 100644 --- a/rtgui/locallab.cc +++ b/rtgui/locallab.cc @@ -148,12 +148,12 @@ Locallab::Locallab(): satur(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SATUR"), -100., 100., 0.1, 0.))),//by default satur = 0 ==> use Mantiuk value // Retinex str(Gtk::manage(new Adjuster(M("TP_LOCALLAB_STR"), 0, 100, 1, 0))), - chrrt(Gtk::manage(new Adjuster(M("TP_LOCALLAB_CHRRT"), 0, 100, 1, 40))), + chrrt(Gtk::manage(new Adjuster(M("TP_LOCALLAB_CHRRT"), 0, 100, 1, 0))), neigh(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NEIGH"), 14, 200, 1, 150))), vart(Gtk::manage(new Adjuster(M("TP_LOCALLAB_VART"), 50, 500, 1, 70))), - dehaz(Gtk::manage(new Adjuster(M("TP_LOCALLAB_DEHAZ"), 0, 100, 1, 20))), - sensih(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SENSIH"), 0, 100, 1, 70))), - softradiusret(Gtk::manage(new Adjuster(M("TP_LOCALLAB_GUIDFILTER"), 0.0, 100.0, 0.1, 70.))), + dehaz(Gtk::manage(new Adjuster(M("TP_LOCALLAB_DEHAZ"), 0, 100, 1, 0))), + sensih(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SENSIH"), 0, 100, 1, 30))), + softradiusret(Gtk::manage(new Adjuster(M("TP_LOCALLAB_GUIDFILTER"), 0.0, 100.0, 0.1, 0.))), // Sharpening sharcontrast(Gtk::manage(new Adjuster(M("TP_SHARPENING_CONTRAST"), 0, 200, 1, 20))), sharradius(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SHARRADIUS"), 0.4, 2.5, 0.01, 0.75))),