]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkSegmentationConnectivity.cxx
no message
[bbtk.git] / packages / vtk / src / bbvtkSegmentationConnectivity.cxx
index da6d9c9720a408bd01104d7f28068ebab531d751..2deda14b1e2856a14a06bb4298fcd581e09d02b5 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbvtkSegmentationConnectivity.cxx,v $
   Language:  C++
-  Date:      $Date: 2010/04/08 14:37:59 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2011/06/16 12:28:43 $
+  Version:   $Revision: 1.7 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -127,11 +127,28 @@ namespace bbvtk
     thresh2->Update();
     cast2->Update();
     connect2->RemoveAllSeeds ();
-    connect2->AddSeed( bbGetInputPositionXYZ()[0] , bbGetInputPositionXYZ()[1] , bbGetInputPositionXYZ()[2] );
-    connect2->Update();
-    cast4->Update();
-    
-    bbSetOutputOut(cast4->GetOutput() );         
+         
+       int x = bbGetInputPositionXYZ()[0];
+       int y = bbGetInputPositionXYZ()[1];
+       int z = bbGetInputPositionXYZ()[2];
+
+         int ext[6];
+         imagedata->GetWholeExtent(ext);
+         int maxx = ext[1]-ext[0]+1;
+         int maxy = ext[3]-ext[2]+1;
+         int maxz = ext[5]-ext[4]+1;
+         if ( x<0 ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range x: %d -> 0 \n",x ); x=0; }
+         if ( y<0 ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range y: %d -> 0 \n",y ); y=0;}
+         if ( z<0 ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range z: %d -> 0 \n",z ); z=0;}
+
+         if ( x>=maxx ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range x: %d -> %d \n",x, maxx-1 ); x=maxx-1; }
+         if ( y>=maxy ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range y: %d -> %d \n",y, maxy-1 ); y=maxy-1; }
+         if ( z>=maxz ) {  printf("Warnnig bbtk::vtk::SegmentationConnectivity::DoProcess limites of the image out of range z: %d -> %d \n",y, maxz-1 ); z=maxz-1; }
+         
+         connect2->AddSeed( x,y,z );
+         connect2->Update();
+         cast4->Update();                      
+         bbSetOutputOut(cast4->GetOutput() );
   }
   
 }// EO namespace bbvtk