# ---------------------------------- # - BBTKGEditor v 1.4 BBS BlackBox Script # - imageWriterExample.bbs # ---------------------------------- # BBTK GEditor Script # ---------------------- include std include itkvtk include creaMaracasVisu include wx include creaImageIO include vtk author "Author ??" description "Description ??" category "" new creaMaracasVisu:ViewerNV Box03 new wx:CommandButton Box04 set Box04.Label "Save (Don't forget the .mhd extension)" new wx:FileSelector Box06 set Box06.BoxProcessMode "Reactive" set Box06.OpenSave "Save" new wx:LayoutSplit Box07 set Box07.Proportion 85 new creaImageIO:ImagesChooserDialogBox Box08 new wx:LayoutLine Box10 set Box10.Orientation "H" new wx:CheckBox Box11 set Box11.In "false" set Box11.Title "Compress" new vtk:MetaImageWriter Box12 connect Box03.Widget Box07.Widget1 connect Box08.Out Box03.In connect Box04.Widget Box10.Widget2 connect Box10.Widget Box07.Widget2 connect Box11.Widget Box10.Widget1 connect Box06.Out Box12.Filename connect Box08.Out Box12.In connect Box11.Out Box12.Compression connect Box04.BoxChange Box12.BoxExecute # Complex input ports exec Box07