]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkExtractVtkImageFilter.cxx
#2969 BBTK Bug New Normal - MesureLength box in vtk package
[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         _extract->SetInput( bbGetInputIn() );
53         _extract->SetVOI(voi);  
54         _extract->UpdateWholeExtent();
55         _extract->Modified();
56         _extract->Update();
57         bbSetOutputOut(_extract->GetOutput());
58 }
59         
60 //===== 
61 // 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)
62 //===== 
63 void ExtractVtkImageFilter::bbUserSetDefaultValues()
64 {
65
66 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
67 //    Here we initialize the input 'In' to 0
68         
69         _extract =NULL;
70
71    bbSetInputIn(0);
72         
73         std::vector<int> tmpIndex;
74         tmpIndex.push_back(0);
75         tmpIndex.push_back(0);
76         tmpIndex.push_back(0);
77         std::vector<int> tmpSize;
78         tmpSize.push_back(1);
79         tmpSize.push_back(1);
80         tmpSize.push_back(1);
81         bbSetInputIndex(tmpIndex);
82         bbSetInputSize(tmpSize);
83         
84         bbSetOutputOut(0);
85   
86 }
87 //===== 
88 // 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)
89 //===== 
90 void ExtractVtkImageFilter::bbUserInitializeProcessing()
91 {
92
93 //  THE INITIALIZATION METHOD BODY :
94 //    Here does nothing 
95 //    but this is where you should allocate the internal/output pointers 
96 //    if any 
97         _extract = vtkExtractVOI::New();
98
99   
100 }
101 //===== 
102 // 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)
103 //===== 
104 void ExtractVtkImageFilter::bbUserFinalizeProcessing()
105 {
106
107 //  THE FINALIZATION METHOD BODY :
108 //    Here does nothing 
109 //    but this is where you should desallocate the internal/output pointers 
110 //    if any
111
112         _extract->Delete();
113 }
114 }
115 // EO namespace bbvtk
116
117