diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-08-02 19:36:03 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-08-02 19:36:03 (GMT) |
commit | 41a92bc71050c61e6978f9d1830fc59e8d734120 (patch) | |
tree | a1c02a14221e7e7530e2044b89ae7c6985d9ec7e /ds9/library | |
parent | 4920b5dcdfd14897ee44086e48e79591b7174bc5 (diff) | |
download | blt-41a92bc71050c61e6978f9d1830fc59e8d734120.zip blt-41a92bc71050c61e6978f9d1830fc59e8d734120.tar.gz blt-41a92bc71050c61e6978f9d1830fc59e8d734120.tar.bz2 |
SMOOTH: separated function radius parameter from kernel size parameter
Diffstat (limited to 'ds9/library')
-rw-r--r-- | ds9/library/frame.tcl | 4 | ||||
-rw-r--r-- | ds9/library/smooth.tcl | 37 |
2 files changed, 34 insertions, 7 deletions
diff --git a/ds9/library/frame.tcl b/ds9/library/frame.tcl index 455fcd0..25c7fd7 100644 --- a/ds9/library/frame.tcl +++ b/ds9/library/frame.tcl @@ -189,7 +189,7 @@ proc CreateNameNumberFrame {which type} { $ds9(next) cube axes $cube(axes) if {$smooth(view)} { - $ds9(next) smooth $smooth(function) $smooth(radius) + $ds9(next) smooth $smooth(function) $smooth(kernel) $smooth(radius) } } rgb { @@ -218,7 +218,7 @@ proc CreateNameNumberFrame {which type} { $ds9(next) cube axes $cube(axes) if {$smooth(view)} { - $ds9(next) smooth $smooth(function) $smooth(radius) + $ds9(next) smooth $smooth(function) $smooth(kernel) $smooth(radius) } } $ds9(next) rgb channel red diff --git a/ds9/library/smooth.tcl b/ds9/library/smooth.tcl index f3358e7..264b650 100644 --- a/ds9/library/smooth.tcl +++ b/ds9/library/smooth.tcl @@ -15,6 +15,7 @@ proc SmoothDef {} { set smooth(lock) 0 set smooth(view) 0 set smooth(function) gaussian + set smooth(kernel) 3 set smooth(radius) 3 array set psmooth [array get smooth] @@ -28,7 +29,7 @@ proc SmoothUpdate {} { if {$current(frame) != {}} { SetWatchCursor if {$smooth(view)} { - RGBEvalLockCurrent rgb(lock,smooth) [list $current(frame) smooth $smooth(function) $smooth(radius)] + RGBEvalLockCurrent rgb(lock,smooth) [list $current(frame) smooth $smooth(function) $smooth(kernel) $smooth(radius)] } else { RGBEvalLockCurrent rgb(lock,smooth) [list $current(frame) smooth delete] } @@ -81,13 +82,16 @@ proc SmoothDialog {} { -variable smooth(function) -value tophat ttk::radiobutton $f.gaussian -text [msgcat::mc {Gaussian}] \ -variable smooth(function) -value gaussian - grid $f.boxcar $f.tophat $f.gaussian -padx 2 -pady 2 + slider $f.rslider 1 20 {Radius} smooth(radius) {SmoothCheckRadius} + grid $f.boxcar $f.tophat $f.gaussian -padx 2 -pady 2 -sticky w + grid $f.rslider - - - -padx 2 -pady 2 -sticky ew # Kernal set f [ttk::labelframe $w.rad -text [msgcat::mc {Kernel}] -padding 2] - slider $f.slider 1 20 {Radius} smooth(radius) {} - grid $f.slider -padx 2 -pady 2 -sticky ew - grid columnconfigure $f 0 -weight 1 + ttk::label $f.ktitle -text [msgcat::mc {Width = Height = 2*Size+1; radius <= kernel size}] + slider $f.kslider 1 20 {Size} smooth(kernel) {SmoothCheckKernel} + grid $f.ktitle -padx 2 -pady 2 -sticky ew + grid $f.kslider -padx 2 -pady 2 -sticky ew # Buttons set f [ttk::frame $w.buttons] @@ -105,6 +109,22 @@ proc SmoothDialog {} { grid columnconfigure $w 0 -weight 1 } +proc SmoothCheckRadius {} { + global smooth + + if {$smooth(radius) > $smooth(kernel)} { + set smooth(kernel) $smooth(radius) + } +} + +proc SmoothCheckKernel {} { + global smooth + + if {$smooth(kernel) < $smooth(radius)} { + set smooth(radius) $smooth(kernel) + } +} + proc SmoothApplyDialog {} { global smooth @@ -141,6 +161,7 @@ proc UpdateSmoothMenu {} { set smooth(view) [$current(frame) has smooth] set smooth(function) [$current(frame) get smooth function] set smooth(radius) [$current(frame) get smooth radius] + set smooth(kernel) [$current(frame) get smooth kernel] } } @@ -266,6 +287,11 @@ proc ProcessSmoothCmd {varname iname} { set smooth(radius) [lindex $var $i] SmoothUpdate } + kernel { + incr i + set smooth(kernel) [lindex $var $i] + SmoothUpdate + } function { incr i set smooth(function) [lindex $var $i] @@ -298,6 +324,7 @@ proc ProcessSendSmoothCmd {proc id param} { lock {$proc $id [ToYesNo $smooth(lock)]} function {$proc $id "$smooth(function)\n"} radius {$proc $id "$smooth(radius)\n"} + kernel {$proc $id "$smooth(kernel)\n"} default {$proc $id [ToYesNo $smooth(view)]} } } |