From: trillos Date: Wed, 14 Oct 2009 09:05:33 +0000 (+0000) Subject: Eliminated stdout in SliceImage X-Git-Tag: CREATOOLS.2-0-3~146 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=2890cab0524520113fd791f61c59e53e2e53b75f;p=creaMaracasVisu.git Eliminated stdout in SliceImage --- diff --git a/bbtk/src/bbcreaMaracasVisuSliceImage.cxx b/bbtk/src/bbcreaMaracasVisuSliceImage.cxx index cb13df8..2531906 100644 --- a/bbtk/src/bbcreaMaracasVisuSliceImage.cxx +++ b/bbtk/src/bbcreaMaracasVisuSliceImage.cxx @@ -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()"<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 ); }