]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkResampleImageFilter.h
#3073 BBTK Bug New Normal - message documentation in boxes
[bbtk.git] / packages / itk / src / bbitkResampleImageFilter.h
index f66167a40d7984aab82c42e9ac532d49f9cdedc8..65222c55d1be8dd1c49118c752a9cf68f753b982 100644 (file)
@@ -153,10 +153,8 @@ namespace bbitk
       // We create an interpolator of the found type 
       typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
       filter->SetInterpolator( interpolator );
-printf("EED ResampleImageFilter NearestNeighbor \n");
     }
     else if  ( bbGetInputInterpolation() == "BSpline") { 
-printf("EED ResampleImageFilter BSpline \n");
       typedef itk::BSplineInterpolateImageFunction < ImageType, double > InterpolatorType; 
       // We create an interpolator of the found type 
       typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
@@ -170,7 +168,6 @@ printf("EED ResampleImageFilter BSpline \n");
     } //end else if
     // Interpolation 
     else { // if ( bbGetInputInterpolation() == "Linear" ) {
-printf("EED ResampleImageFilter Linear \n");
       typedef itk::LinearInterpolateImageFunction < ImageType, double > InterpolatorType;     
       // We create an interpolator of the found type 
       typename InterpolatorType::Pointer interpolator =  InterpolatorType::New();