]> Creatis software - creaMiniTools.git/blob - bbtk_package_creaMiniTools/bbs/appli/resampling.bbs
3d238a7e62feb8bfb6f8b9feeb792591be64d55c
[creaMiniTools.git] / bbtk_package_creaMiniTools / bbs / appli / resampling.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.2 BBS BlackBox Script
3 # - /Users/davila/Desktop/tmpBBTK-BBS/resampling.bbs
4 # ----------------------------------
5
6 # BBTK GEditor Script
7 # ----------------------
8
9 include std
10 include itkvtk
11 include wx
12 include itk
13 include creaMaracasVisu
14 include creaMiniTools
15 include std
16
17 author "Author ??"
18 description "Description ??"
19 category "<VOID>"
20
21 new FileSelector Box00
22
23 new ImageReader Box01
24
25 new ResampleImageFilter Box02
26   set Box02.Spacing "0.097 0.097 0.097"
27
28 new ViewerNV Box03
29
30 new CommandButton Box04
31   set Box04.Label "Write mhd image"
32
33 new LayoutSplit Box05
34   set Box05.Proportion 15
35
36 new ImageWriter Box06
37
38 new FileSelector Box07
39   set Box07.OpenSave Save
40
41 new ImagePropertiesWidget Box08
42
43 new CommandButton Box09
44   set Box09.Label "Run resampling"
45
46 new LayoutSplit Box11
47   set Box11.Orientation H
48
49 new LayoutSplit Box12
50   set Box12.Proportion 90
51
52 new LayoutLine Box13
53   set Box13.Orientation V
54
55 new InputText Box14
56   set Box14.In 1
57   set Box14.Title "NewSpacing X"
58
59 new InputText Box16
60   set Box16.In 1
61   set Box16.Title "NewSpacing Y"
62
63 new InputText Box17
64   set Box17.In 1
65   set Box17.Title "NewSpacing Z"
66
67 new ConcatStrings Box18
68   set Box18.In2 " "
69   set Box18.In4 " "
70
71 new RadioButton Box19
72   set Box19.In 0
73   set Box19.In0 Linear
74   set Box19.In1 BSpline
75   set Box19.In2 NearestNeighbor
76   set Box19.Title Interpolation
77
78 new StringSelect Box20
79   set Box20.In1 Linear
80   set Box20.In2 BSpline
81   set Box20.In3 NearestNeighbor
82
83
84 connect Box00.Out Box01.In
85 connect Box01.Out Box02.In
86 connect Box02.Out Box03.In
87 connect Box03.Widget Box05.Widget2
88 connect Box04.Widget Box05.Widget1
89 connect Box07.Out Box06.Filename
90 connect Box02.Out Box06.In
91 connect Box04.BoxChange Box06.BoxExecute
92 connect Box01.Out Box08.in
93 connect Box09.Widget Box12.Widget2
94 connect Box11.Widget Box12.Widget1
95 connect Box14.Widget Box13.Widget1
96 connect Box08.widget Box11.Widget1
97 connect Box13.Widget Box11.Widget2
98 connect Box16.Widget Box13.Widget2
99 connect Box17.Widget Box13.Widget3
100 connect Box14.Out Box18.In1
101 connect Box18.Out Box02.Spacing
102 connect Box19.Out Box20.In
103 connect Box19.Widget Box13.Widget4
104 connect Box20.Out Box02.Interpolation
105 connect Box09.BoxChange Box05.BoxExecute
106 connect Box16.Out Box18.In3
107 connect Box17.Out Box18.In5
108
109 exec Box12