Defringe threshold enhancement (see issue 1801 - thanks, Ingo)

This commit is contained in:
michael
2013-09-20 07:11:39 -04:00
parent ed3b29eee8
commit f2e601a829
65 changed files with 76 additions and 71 deletions

View File

@@ -57,7 +57,7 @@ Defringe::Defringe () : Gtk::VBox(), FoldableToolPanel(this) {
//edgConn = enabled->signal_toggled().connect( sigc::mem_fun(*this, &Defringe::edgeChanged) );
radius = Gtk::manage (new Adjuster (M("TP_DEFRINGE_RADIUS"), 0.5, 5.0, 0.1, 2.0));
threshold = Gtk::manage (new Adjuster (M("TP_DEFRINGE_THRESHOLD"), 0, 100, 1, 25));
threshold = Gtk::manage (new Adjuster (M("TP_DEFRINGE_THRESHOLD"), 0, 100, 1, 13));
radius->setAdjusterListener (this);
threshold->setAdjusterListener (this);
radius->show();

View File

@@ -2,7 +2,7 @@
#define _PPVERSION_
// This number have to be incremented whenever the PP3 file format is modified
#define PPVERSION 309
#define PPVERSION 310
#define PPVERSION_AEXP 301 //value of PPVERSION when auto exposure algorithm was modified
/* Log of version changes
@@ -10,6 +10,8 @@
* [Perspective] Horizontal and Vertical changed from int to double
* added [Directional Pyramid Denoising] Method, Redchro, Bluechro
* added [RGB Curves] LumaMode
* 310 2013-09-16
* Defringing /Threshold - changed calculation, issue 1801
*/
#endif