]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkBinaryThresholdImageFilter.h
#3497 Bug in std VectorFilterString
[bbtk.git] / packages / itk / src / bbitkBinaryThresholdImageFilter.h
index 0fa8e972515043b304d33090dcb9a9ea7bb3a5f1..bda1917b7d38b87db1aef7eea08384569258c25b 100644 (file)
@@ -204,29 +204,23 @@ namespace bbitk
   template <class T> 
   void BinaryThresholdImageFilterGeneric::Process()
   {
-printf("EED BinaryThresholdImageFilterGeneric::Process Start\n");
     bbtkDebugMessageInc("Core",9,
                        "bbitk::BinaryThresholdImageFilterGeneric::Process<"
                        <<bbtk::TypeName<T>()<<">()"<<std::endl);
  
     typedef BinaryThresholdImageFilter<T> FilterType;
     typename FilterType::Pointer f = FilterType::New("Temp");
-         typedef T* TPointer; 
-         f->bbSetInputIn( this->bbGetInputIn().get < TPointer > () );
-    f->bbSetInputLowerThreshold ( (typename T::PixelType)
-                                 this->bbGetInputLowerThreshold() );
-    f->bbSetInputUpperThreshold ( (typename T::PixelType)
-                                 this->bbGetInputUpperThreshold() );
-    f->bbSetInputInsideValue ( (typename T::PixelType)
-                              this->bbGetInputInsideValue() );
-    f->bbSetInputOutsideValue ( (typename T::PixelType)
-                               this->bbGetInputOutsideValue() );
+       typedef T* TPointer; 
+       f->bbSetInputIn( this->bbGetInputIn().get < TPointer > () );
+    f->bbSetInputLowerThreshold ( (typename T::PixelType)this->bbGetInputLowerThreshold() );
+    f->bbSetInputUpperThreshold ( (typename T::PixelType)this->bbGetInputUpperThreshold() );
+    f->bbSetInputInsideValue ( (typename T::PixelType)this->bbGetInputInsideValue() );
+    f->bbSetInputOutsideValue ( (typename T::PixelType)this->bbGetInputOutsideValue() );
     f->bbExecute();
     f->bbGetOutputOut()->Register();
     this->bbSetOutputOut( f->bbGetOutputOut() );
 
     bbtkDebugDecTab("Core",9);
-printf("EED BinaryThresholdImageFilterGeneric::Process End\n");
   }
 
   //===================================================