]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkExtractVtkImageFilter.cxx
#3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7
[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         int voi[6];
44
45         voi[0] = bbGetInputIndex()[0];
46         voi[1] = bbGetInputIndex()[0]+bbGetInputSize()[0]-1;
47         voi[2] = bbGetInputIndex()[1];
48         voi[3] = bbGetInputIndex()[1]+bbGetInputSize()[1]-1;
49         voi[4] = bbGetInputIndex()[2];
50         voi[5] = bbGetInputIndex()[2]+bbGetInputSize()[2]-1;
51         
52 //EED 2017-01-01 Migration VTK7
53 #if (VTK_MAJOR_VERSION <= 5) 
54         _extract->SetInput( bbGetInputIn() );
55 #endif
56 #if (VTK_MAJOR_VERSION >= 6) 
57         _extract->SetInputData( bbGetInputIn() );
58 #endif
59
60         _extract->SetVOI(voi);  
61         _extract->UpdateWholeExtent();
62         _extract->Modified();
63         _extract->Update();
64         bbSetOutputOut(_extract->GetOutput());
65 }
66         
67 //===== 
68 // 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)
69 //===== 
70 void ExtractVtkImageFilter::bbUserSetDefaultValues()
71 {
72
73 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
74 //    Here we initialize the input 'In' to 0
75         
76         _extract =NULL;
77
78    bbSetInputIn(0);
79         
80         std::vector<int> tmpIndex;
81         tmpIndex.push_back(0);
82         tmpIndex.push_back(0);
83         tmpIndex.push_back(0);
84         std::vector<int> tmpSize;
85         tmpSize.push_back(1);
86         tmpSize.push_back(1);
87         tmpSize.push_back(1);
88         bbSetInputIndex(tmpIndex);
89         bbSetInputSize(tmpSize);
90         
91         bbSetOutputOut(0);
92   
93 }
94 //===== 
95 // 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)
96 //===== 
97 void ExtractVtkImageFilter::bbUserInitializeProcessing()
98 {
99
100 //  THE INITIALIZATION METHOD BODY :
101 //    Here does nothing 
102 //    but this is where you should allocate the internal/output pointers 
103 //    if any 
104         _extract = vtkExtractVOI::New();
105
106   
107 }
108 //===== 
109 // 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)
110 //===== 
111 void ExtractVtkImageFilter::bbUserFinalizeProcessing()
112 {
113
114 //  THE FINALIZATION METHOD BODY :
115 //    Here does nothing 
116 //    but this is where you should desallocate the internal/output pointers 
117 //    if any
118
119         _extract->Delete();
120 }
121 }
122 // EO namespace bbvtk
123
124