]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkImageBoundaries.cxx
b76ce9624d38023bff3eed9f7fd63dc624a8ae4b
[bbtk.git] / packages / vtk / src / bbvtkImageBoundaries.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 "bbvtkImageBoundaries.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,ImageBoundaries)
37 BBTK_BLACK_BOX_IMPLEMENTATION(ImageBoundaries,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 ImageBoundaries::Process()
42 {
43         printf("bbtk:vtk::ImageBoundaries::Process start\n");
44         if (bbGetInputIn()!=NULL)
45         {
46                 int i,j,k;      
47                 int ext[6];
48                 double value;
49                 
50                 bbGetInputIn()->GetWholeExtent(ext);
51                 int maxX        = ext[1]-ext[0]+1;
52                 int maxY        = ext[3]-ext[2]+1;
53                 int maxZ        = ext[5]-ext[4]+1;
54                                 
55                 int bXMax       = 0;
56                 int bYMax       = 0;
57                 int bZMax       = 0;
58                 int bXMin       = maxX-1;
59                 int bYMin       = maxY-1;
60                 int bZMin       = maxZ-1;
61                 
62                 for (i=0 ; i<maxX ; i++)
63                 {
64                         for (j=0 ; j<maxY ; j++)
65                         {
66                                 for (k=0 ; k<maxZ ; k++)
67                                 {
68                                         value = bbGetInputIn()->GetScalarComponentAsDouble(i, j, k,0);
69                                         if ( (value>=bbGetInputLowerValue()) && (value<=bbGetInputUpperValue())  )
70                                         {
71                                                 if (i<bXMin) bXMin=i;
72                                                 if (j<bYMin) bYMin=j;
73                                                 if (k<bZMin) bZMin=k;
74                                                 if (i>bXMax) bXMax=i;
75                                                 if (j>bYMax) bYMax=j;
76                                                 if (k>bZMax) bZMax=k;
77                                         }
78                                 } // for k
79                         } // for j
80                 } // i
81                         
82                 std::vector<int> tmpIndex;              
83                 std::vector<int> tmpSize;
84                 
85                 if (bXMin>bXMax){
86                         tmpIndex.push_back(0);
87                         tmpIndex.push_back(0);
88                         tmpIndex.push_back(0);
89                         tmpSize.push_back(1);
90                         tmpSize.push_back(1);
91                         tmpSize.push_back(1);
92                 } else {
93                         tmpIndex.push_back(bXMin);
94                         tmpIndex.push_back(bYMin);
95                         tmpIndex.push_back(bZMin);
96                         tmpSize.push_back(bXMax-bXMin+1);
97                         tmpSize.push_back(bYMax-bYMin+1);
98                         tmpSize.push_back(bZMax-bZMin+1);
99                 }
100                         
101                 bbSetOutputIndex(tmpIndex);
102                 bbSetOutputSize(tmpSize);
103         } else {
104                 printf("bbtk warnning: bbtk:vtk:ImageBoundaries box, Input image (In) not initialized..\n");
105         }
106         printf("bbtk:vtk::ImageBoundaries::Process end\n");
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 ImageBoundaries::bbUserSetDefaultValues()
112 {
113         
114
115 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
116    bbSetInputIn(NULL);
117         bbSetInputLowerValue(0);
118         bbSetInputUpperValue(5000);
119   
120         std::vector<int> tmpIndex;
121         tmpIndex.push_back(0);
122         tmpIndex.push_back(0);
123         tmpIndex.push_back(0);
124
125         std::vector<int> tmpSize;
126         tmpSize.push_back(1);
127         tmpSize.push_back(1);
128         tmpSize.push_back(1);
129
130         bbSetOutputIndex(tmpIndex);
131         bbSetOutputSize(tmpSize);
132 }
133 //===== 
134 // 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)
135 //===== 
136 void ImageBoundaries::bbUserInitializeProcessing()
137 {
138
139 //  THE INITIALIZATION METHOD BODY :
140 //    Here does nothing 
141 //    but this is where you should allocate the internal/output pointers 
142 //    if any 
143
144   
145 }
146 //===== 
147 // 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)
148 //===== 
149 void ImageBoundaries::bbUserFinalizeProcessing()
150 {
151
152 //  THE FINALIZATION METHOD BODY :
153 //    Here does nothing 
154 //    but this is where you should desallocate the internal/output pointers 
155 //    if any
156   
157 }
158 }
159 // EO namespace bbvtk
160
161