]> Creatis software - creaMaracasVisu.git/commitdiff
Eliminated stdout in SliceImage
authortrillos <trillos>
Wed, 14 Oct 2009 09:05:33 +0000 (09:05 +0000)
committertrillos <trillos>
Wed, 14 Oct 2009 09:05:33 +0000 (09:05 +0000)
bbtk/src/bbcreaMaracasVisuSliceImage.cxx

index cb13df8d9856ff8c6222e241dd21a513e6f7072e..253190600e631c75bfa9f2d20e57977328a9eb0f 100644 (file)
@@ -9,10 +9,10 @@ BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,SliceImage)
 BBTK_BLACK_BOX_IMPLEMENTATION(SliceImage,bbtk::AtomicBlackBox);
 void SliceImage::Process()
 {
-       printf("EED 0 SliceImage::Process \n");
+       //printf("EED 0 SliceImage::Process \n");
        vtkImageData *imagedata=NULL;
 
-       std::cout<<"MSJ: test SliceImage::Process()"<<this<<std::endl;
+       //std::cout<<"MSJ: test SliceImage::Process()"<<this<<std::endl;
        if ( bbGetInputIn()!=NULL ){
 
          imageReslice->SetInput( bbGetInputIn() );
@@ -24,7 +24,7 @@ void SliceImage::Process()
           imagedata = imageReslice->GetOutput();
          imagedata->Update();
          imagedata->UpdateInformation();       
-         printf("EED 1 SliceImage::Process %p\n", imagedata);
+         //printf("EED 1 SliceImage::Process %p\n", imagedata);
   }
   bbSetOutputOut( imagedata );
 }