]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkResampleImageFilter.h
#2853 BBTK Feature New Normal - std:FilesFromDirectory box add option to create...
[bbtk.git] / packages / itk / src / bbitkResampleImageFilter.h
index 65222c55d1be8dd1c49118c752a9cf68f753b982..f66167a40d7984aab82c42e9ac532d49f9cdedc8 100644 (file)
@@ -153,8 +153,10 @@ 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();
@@ -168,6 +170,7 @@ namespace bbitk
     } //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();