]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/bbs/appli/Recalage.bbs
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / PackRecalage / bbs / appli / Recalage.bbs
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
4 #                        pour la Santé)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 #
7 #  This software is governed by the CeCILL-B license under French law and 
8 #  abiding by the rules of distribution of free software. You can  use, 
9 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
10 #  license as circulated by CEA, CNRS and INRIA at the following URL 
11 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
12 #  or in the file LICENSE.txt.
13 #
14 #  As a counterpart to the access to the source code and  rights to copy,
15 #  modify and redistribute granted by the license, users are provided only
16 #  with a limited warranty  and the software's author,  the holder of the
17 #  economic rights,  and the successive licensors  have only  limited
18 #  liability. 
19 #
20 #  The fact that you are presently reading this means that you have had
21 #  knowledge of the CeCILL-B license and that you accept its terms.
22 # ------------------------------------------------------------------------   
23
24 # ----------------------------------
25 # - BBTKGEditor v 1.2 BBS BlackBox Script
26 # - /Users/davila/Creatis/All5/creatools_source/creaRigidRegistration/PackRecalage/bbs/appli/Recalage.bbs
27 # ----------------------------------
28
29 # BBTK GEditor Script
30 # ----------------------
31
32 include std
33 include itkvtk
34 include wx
35 include std
36
37 author "info-dev@creatis.insa-lyon.fr"
38 description "creatisRecalage::Recalage Rigid 2D and 3D examples. "
39 category "example"
40
41 new CommandButton recalage2D
42   set recalage2D.Label "Recalage 2D"
43
44 new CommandButton recalage3DV1
45   set recalage3DV1.Label "Recalage 3D (one point)"
46
47 new CommandButton recalage3DV2
48   set recalage3DV2.Label "Recalage 3D (two points)"
49
50 new CommandButton recalage3DV3
51   set recalage3DV3.Label "Recalage 3D (three points)"
52
53 new LayoutLine layout
54
55 new ExecSystemCommand Box05
56   set Box05.In "bbi PackRecalage/appli/Recalage2D.bbs &"
57
58 new ExecSystemCommand Box06
59   set Box06.In "bbi PackRecalage/appli/ExampleRecalage3D1Point.bbs &"
60
61 new ExecSystemCommand Box07
62   set Box07.In "bbi PackRecalage/appli/ExampleRecalage3D2Points.bbs &"
63
64 new ExecSystemCommand Box08
65   set Box08.In "bbi PackRecalage/appli/ExampleRecalage3D3Points.bbs &"
66
67
68 connect recalage2D.Widget layout.Widget1
69 connect recalage3DV1.Widget layout.Widget2
70 connect recalage3DV2.Widget layout.Widget3
71 connect recalage3DV3.Widget layout.Widget4
72 connect recalage2D.BoxChange Box05.BoxExecute
73 connect recalage3DV1.BoxChange Box06.BoxExecute
74 connect recalage3DV2.BoxChange Box07.BoxExecute
75 connect recalage3DV3.BoxChange Box08.BoxExecute
76
77 exec layout