]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkBinaryThresholdImageFilter.cxx
*** empty log message ***
[bbtk.git] / packages / itk / src / bbitkBinaryThresholdImageFilter.cxx
index 5a093d79a8527bb7de695a5c04543c4982bf2fb9..a97caa0551fcab0956131feb69d7342fc2aaf467 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbitkBinaryThresholdImageFilter.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/05/15 14:57:58 $
-  Version:   $Revision: 1.5 $
+  Date:      $Date: 2009/05/18 10:45:43 $
+  Version:   $Revision: 1.6 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -38,12 +38,27 @@ namespace bbitk
   
   BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION(BinaryThresholdImageFilter,
                                              bbtk::AtomicBlackBox);
+
   BBTK_BLACK_BOX_IMPLEMENTATION(BinaryThresholdImageFilterGeneric,
                                     bbtk::AtomicBlackBox);
   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itk,
                                BinaryThresholdImageFilterGeneric);
        
        
+  void BinaryThresholdImageFilterGeneric::bbUserSetDefaultValues()
+  {
+    bbSetInputLowerThreshold(0);
+    bbSetInputUpperThreshold(100);
+    bbSetInputInsideValue(255);
+    bbSetInputOutsideValue(0);
+  }
+  void BinaryThresholdImageFilterGeneric::bbUserInitializeProcessing()
+  {
+  }
+  void BinaryThresholdImageFilterGeneric::bbUserFinalizeProcessing()
+  {
+  }
+  
 }
 
 // EO namespace bbtk