Improve inverretinex - shapedetection deltaeE structure-clean code-add sliders shape detection in settings

This commit is contained in:
Desmis
2019-02-02 14:52:29 +01:00
parent c0e01d84ea
commit 9b6bd50410
6 changed files with 291 additions and 172 deletions

View File

@@ -55,8 +55,8 @@ ControlSpotPanel::ControlSpotPanel():
centerY_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_CENTER_Y"), -1000, 1000, 1, 0))),
circrad_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_CIRCRADIUS"), 2, 150, 1, 18))),
transit_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_TRANSIT"), 5, 95, 1, 60))),
thresh_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_THRES"), 1, 35, 1, 18))),
iter_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_PROXI"), 0, 60, 1, 0))),
thresh_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_THRES"), 1, 12, 1, 4))),
iter_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_PROXI"), 10, 40, 1, 20))),
lastObject_(-1),
lastCoord_(new Coord()),
@@ -235,7 +235,7 @@ ControlSpotPanel::ControlSpotPanel():
artifBox->pack_start(*iter_);
iter_->setAdjusterListener(this);
artifFrame->add(*artifBox);
// pack_start(*artifFrame);
pack_start(*artifFrame);
show_all();
}