category "tool, read/write"
load vtk
-//include wxvtk
+include wxvtk
load std
load itk
include vtk
new ConcatImages reader
connect chooser.Out reader.In
+
+
+
// Normally (?) the following lines {== BEGIN == / ==END ==}
// are now useless; let here as a reminder/example
// Don't remove them . JPRx
+
new CommandButton cb1
- connect cb1.Widget main.Widget1
set cb1.Label "1) Select File"
set cb1.WinDialog true
-
+ connect cb1.Widget main.Widget1
+
connect cb1.BoxChange reader.BoxExecute
-
+
+new SimpleSlicer slc
+ set slc.Orientation 2
+ set slc.SliderReactiveOnTrack 1
+ connect reader.Out slc.In
+ // It doesn't work ?!?, needs to "exec slc" // JPR
+ connect reader.BoxChange slc.BoxExecute
+
+exec slc
+
new CommandButton cb
connect cb.Widget main.Widget2
set cb.Label "2) Write (no '.mhd' extention needed!"
set cb.WinDialog true
+
+new CommandButton next
+ connect next.Widget main.Widget3
+ set next.Label "Next !"
+ set next.WinDialog true
+ // It doesn't work : <<the black box "main" is still connected">>
+ set next.In "delete main"
# Choose where you want to write
# ------------------------------