2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------ */
28 /*=========================================================================
30 Module: $RCSfile: bbvtkSegmentationConnectivity.cxx,v $
32 Date: $Date: 2012/11/16 08:51:58 $
33 Version: $Revision: 1.8 $
34 =========================================================================*/
43 #include "bbvtkSegmentationConnectivity.h"
44 #include "bbvtkPackage.h"
46 #include "bbtkStaticLecture.h"
50 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,SegmentationConnectivity);
51 BBTK_BLACK_BOX_IMPLEMENTATION(SegmentationConnectivity,
52 bbtk::AtomicBlackBox);
54 // --------------------------------------------------------------
56 void SegmentationConnectivity::bbUserSetDefaultValues()
63 std::vector<int> position;
64 position.push_back(0);
65 position.push_back(0);
66 position.push_back(0);
67 bbSetInputPositionXYZ(position);
68 std::vector<int> threshold;
69 threshold.push_back(0);
70 threshold.push_back(1);
71 bbSetInputThresholdMinMax(threshold);
73 bbSetInputOutputFormat("SAME");
77 // --------------------------------------------------------------
78 void SegmentationConnectivity::bbUserInitializeProcessing()
80 thresh2 = vtkImageThreshold::New();
81 thresh2->SetInValue(255);
82 thresh2->SetOutValue(0);
83 thresh2->SetOutputScalarTypeToUnsignedChar();
84 connect2 = vtkImageSeedConnectivity::New();
85 //EED 2017-01-01 Migration VTK7
86 #if VTK_MAJOR_VERSION <= 5
87 connect2->SetInput(thresh2->GetOutput());
89 connect2->SetInputData(thresh2->GetOutput());
91 connect2->SetInputConnectValue(255);
92 connect2->SetOutputConnectedValue( 255 );
93 connect2->SetOutputUnconnectedValue(0);
94 cast4 = vtkImageCast::New();
95 //EED 2017-01-01 Migration VTK7
96 #if VTK_MAJOR_VERSION <= 5
97 cast4->SetInput(connect2->GetOutput());
99 cast4->SetInputData(connect2->GetOutput());
103 // --------------------------------------------------------------
104 void SegmentationConnectivity::bbUserFinalizeProcessing()
128 // --------------------------------------------------------------
129 void SegmentationConnectivity::DoProcess()
132 int i,numPoints = bbGetInputPositionXYZ().size()/3;
133 int verif = (bbGetInputPositionXYZ().size()-1) % 3;
134 if (( numPoints>=1) && (verif==2) && (bbGetInputIn()!=NULL))
137 int outputformat = bbtkStaticLecture::GetTypeFormat( bbGetInputOutputFormat() , bbGetInputIn() );
138 // int outputformat=4;
139 vtkImageData *imagedata = bbGetInputIn();
140 //EED 2017-01-01 Migration VTK7
141 #if VTK_MAJOR_VERSION <= 5
142 imagedata->UpdateInformation();
143 imagedata->SetUpdateExtent(imagedata->GetWholeExtent());
145 thresh2->SetInput(imagedata);
147 // imagedata->SetExtent(imagedata->GetExtent());
148 thresh2->SetInputData(imagedata);
150 thresh2->ThresholdBetween(bbGetInputThresholdMinMax()[0], bbGetInputThresholdMinMax()[1]);
152 connect2->RemoveAllSeeds ();
154 //EED 2017-01-01 Migration VTK7
155 #if VTK_MAJOR_VERSION <= 5
156 imagedata->GetWholeExtent(ext);
158 imagedata->GetExtent(ext);
160 int maxX = ext[1]-ext[0]+1;
161 int maxY = ext[3]-ext[2]+1;
162 int maxZ = ext[5]-ext[4]+1;
163 for (i=0;i<numPoints;i++)
165 x = bbGetInputPositionXYZ()[i*3+0];
166 y = bbGetInputPositionXYZ()[i*3+1];
167 z = bbGetInputPositionXYZ()[i*3+2];
168 if ( (x>=0) || (x<maxX) || (y>=0) || (y<maxY) || (z>=0) || (z<maxZ) )
170 connect2->AddSeed( x,y,z );
172 printf("EED WARNNIG! In box: SegmentationConnectivity points list out of range \n");
173 } // if point inside image
175 connect2->SetOutputConnectedValue( bbGetInputValue() );
176 cast4->SetOutputScalarType( outputformat );
177 connect2->Modified();
180 bbSetOutputOut(cast4->GetOutput() );
182 printf("EED WARNNIG! In box: SegmentationConnectivity List of points are not coherent. \n");
183 bbSetOutputOut( NULL );
184 }// if numPoints verif
187 }// EO namespace bbvtk