]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkExtractVtkImageFilter.cxx
7f6f7b305e5119f6da5717e28fd42d33f540e529
[bbtk.git] / packages / vtk / src / bbvtkExtractVtkImageFilter.cxx
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 //=====
29 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
30 //===== 
31 #include "bbvtkExtractVtkImageFilter.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,ExtractVtkImageFilter)
37 BBTK_BLACK_BOX_IMPLEMENTATION(ExtractVtkImageFilter,bbtk::AtomicBlackBox);
38 //===== 
39 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
40 //===== 
41 void ExtractVtkImageFilter::Process()
42 {
43 printf("EED ExtractVtkImageFilter::Process Start\n");
44         int voi[6];
45
46         voi[0] = bbGetInputIndex()[0];
47         voi[1] = bbGetInputIndex()[0]+bbGetInputSize()[0]-1;
48         voi[2] = bbGetInputIndex()[1];
49         voi[3] = bbGetInputIndex()[1]+bbGetInputSize()[1]-1;
50         voi[4] = bbGetInputIndex()[2];
51         voi[5] = bbGetInputIndex()[2]+bbGetInputSize()[2]-1;
52         
53         _extract->SetInput( bbGetInputIn() );
54         _extract->SetVOI(voi);  
55         _extract->UpdateWholeExtent();
56         _extract->Modified();
57         _extract->Update();
58         bbSetOutputOut(_extract->GetOutput());
59 printf("EED ExtractVtkImageFilter::Process End\n");
60 }
61         
62 //===== 
63 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
64 //===== 
65 void ExtractVtkImageFilter::bbUserSetDefaultValues()
66 {
67
68 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
69 //    Here we initialize the input 'In' to 0
70         
71         _extract =NULL;
72
73    bbSetInputIn(0);
74         
75         std::vector<int> tmpIndex;
76         tmpIndex.push_back(0);
77         tmpIndex.push_back(0);
78         tmpIndex.push_back(0);
79         std::vector<int> tmpSize;
80         tmpSize.push_back(1);
81         tmpSize.push_back(1);
82         tmpSize.push_back(1);
83         bbSetInputIndex(tmpIndex);
84         bbSetInputSize(tmpSize);
85         
86         bbSetOutputOut(0);
87   
88 }
89 //===== 
90 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
91 //===== 
92 void ExtractVtkImageFilter::bbUserInitializeProcessing()
93 {
94
95 //  THE INITIALIZATION METHOD BODY :
96 //    Here does nothing 
97 //    but this is where you should allocate the internal/output pointers 
98 //    if any 
99         _extract = vtkExtractVOI::New();
100
101   
102 }
103 //===== 
104 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
105 //===== 
106 void ExtractVtkImageFilter::bbUserFinalizeProcessing()
107 {
108
109 //  THE FINALIZATION METHOD BODY :
110 //    Here does nothing 
111 //    but this is where you should desallocate the internal/output pointers 
112 //    if any
113
114         _extract->Delete();
115 }
116 }
117 // EO namespace bbvtk
118
119