X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkMeasureLength.cxx;h=8cd7e4a037fa69d2f033cbd95514bfd8bd65f659;hb=d024c7fa8b822877956e4dee7fe98ea749415d47;hp=11326b71782d94761eedbf00dafaa786d40c418e;hpb=064072f6c392f24c17f71d459a9508408a806927;p=bbtk.git diff --git a/packages/vtk/src/bbvtkMeasureLength.cxx b/packages/vtk/src/bbvtkMeasureLength.cxx index 11326b7..8cd7e4a 100644 --- a/packages/vtk/src/bbvtkMeasureLength.cxx +++ b/packages/vtk/src/bbvtkMeasureLength.cxx @@ -13,11 +13,8 @@ BBTK_BLACK_BOX_IMPLEMENTATION(MeasureLength,bbtk::AtomicBlackBox); //===== void MeasureLength::Process() { - std::cout << "RaC MeasureLength::Process START"<< std::endl; - _points = bbGetInputPoints(); _image = bbGetInputImageData(); - double sumLength = 0 ; double sumLengthVoxels = 0 ; if(_image != NULL && _points->GetNumberOfPoints()>1) @@ -86,11 +83,8 @@ void MeasureLength::Process() } // for } // if - bbSetOutputLength( sqrt(sumLength) ); bbSetOutputLengthVoxels( sqrt(sumLengthVoxels) ); - - std::cout << "RaC MeasureLength::Process END"<< std::endl; } //===== // 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)