]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkMeasureLength.cxx
#3008 BBTK Feature New Normal - Active option in box vtk::IsoSurfaceExtractor
[bbtk.git] / packages / vtk / src / bbvtkMeasureLength.cxx
index 11326b71782d94761eedbf00dafaa786d40c418e..8cd7e4a037fa69d2f033cbd95514bfd8bd65f659 100644 (file)
@@ -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)