]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/bbs/boxes/CompareImagesWidget_base_3Dp_B.bbs
2028 Feature Create the box AddImageToVector, Clean comments
[creaRigidRegistration.git] / PackRecalage / bbs / boxes / CompareImagesWidget_base_3Dp_B.bbs
1 # ----------------------------------
2 # - BBTKGEditor v 1.4 BBS BlackBox Script (Complex Box)
3 # - /home/davila/Creatis/All/creatools_source/creaRigidRegistration/PackRecalage/bbs/boxes/CompareImagesWidget_base_3Dp_B.bbs
4 # ----------------------------------
5
6 include std
7 include itkvtk
8 include PackRecalage
9 include creaMaracasVisu
10 include vtk
11 include std
12
13 define CompareImagesWidget_base_3Dp_B PackRecalage
14
15 author "info-dev@creatis.insa-lyon.fr"
16 description "creatisRecalage"
17
18 category "example"
19
20 new ImageConvolution convol1
21
22 new SliceImage Box02
23   set Box02.TypeOrientation "0"
24
25 new ImageConvolution Box03
26
27 new SliceImage Box04
28   set Box04.TypeOrientation "1"
29
30 new ImageConvolution Box05
31
32 new SliceImage Box06
33   set Box06.TypeOrientation "2"
34
35 new AddImageToVector Box07
36
37 new vtkImageDataPointerRelay Box08
38
39 new MagicBox Box09
40
41 new MagicBox Box10
42
43 new MagicBox Box11
44
45
46 connect Box02.Out convol1.In
47 connect Box04.Out Box03.In
48 connect Box06.Out Box05.In
49 connect convol1.Out Box07.In0
50 connect Box03.Out Box07.In1
51 connect Box05.Out Box07.In2
52 connect Box08.Out Box02.In
53 connect Box08.Out Box04.In
54 connect Box08.Out Box06.In
55 connect Box09.BoxChange convol1.BoxExecute
56 connect Box09.BoxChange Box03.BoxExecute
57 connect Box09.BoxChange Box05.BoxExecute
58 connect Box10.Out convol1.Factor
59 connect Box10.Out Box03.Factor
60 connect Box10.Out Box05.Factor
61 connect Box11.Out convol1.On
62 connect Box11.Out Box03.On
63 connect Box11.Out Box05.On
64
65 # Complex input ports
66 input In Box08.In " "
67 input BoxExecute Box09.In " "
68 input ConvolutionFactor Box10.In " "
69 input ConvolutionOnOff Box11.In " "
70 input SliceY Box04.Slice " "
71 input SliceX Box06.Slice " "
72 input SliceZ Box02.Slice " "
73
74 # Complex output ports
75 output Out Box07.Out " "
76
77
78 endefine