Option Fftwsigma (true) to have substantially the same results FFTW Gaussianblur

This commit is contained in:
Desmis
2019-07-01 14:20:00 +02:00
parent 6bb31aff86
commit f1cc67bc2a
5 changed files with 44 additions and 25 deletions

View File

@@ -596,6 +596,7 @@ void Options::setDefaults()
rtSettings.detectshape = true;//experimental new detection shape
rtSettings.previewselection = 5;//betwen 1 to 40
rtSettings.cbdlsensi = 1.0;//betwen 0.001 to 1
rtSettings.fftwsigma = true; //choice between sigma^2 or empirical formula
// end locallab
@@ -760,6 +761,10 @@ void Options::readFromFile(Glib::ustring fname)
rtSettings.detectshape = keyFile.get_boolean("General", "Detectshape");
}
if (keyFile.has_key("General", "Fftwsigma")) {
rtSettings.fftwsigma = keyFile.get_boolean("General", "Fftwsigma");
}
if (keyFile.has_key("General", "Cropsleep")) {
rtSettings.cropsleep = keyFile.get_integer("General", "Cropsleep");
}
@@ -1988,6 +1993,7 @@ void Options::saveToFile(Glib::ustring fname)
keyFile.set_double("General", "Reduchigh", rtSettings.reduchigh);
keyFile.set_double("General", "Reduclow", rtSettings.reduclow);
keyFile.set_boolean("General", "Detectshape", rtSettings.detectshape);
keyFile.set_boolean("General", "Fftwsigma", rtSettings.fftwsigma);
keyFile.set_integer("External Editor", "EditorKind", editorToSendTo);
keyFile.set_string("External Editor", "GimpDir", gimpDir);