X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fitk%2Fsrc%2FbbitkBinaryThresholdImageFilter.cxx;fp=packages%2Fitk%2Fsrc%2FbbitkBinaryThresholdImageFilter.cxx;h=a97caa0551fcab0956131feb69d7342fc2aaf467;hb=8dd53a72bc1dd1ca2c6e2763c0aeb51c77ee352e;hp=5a093d79a8527bb7de695a5c04543c4982bf2fb9;hpb=0231a36c2ca07094ce52873eb38e59f0b22a2478;p=bbtk.git diff --git a/packages/itk/src/bbitkBinaryThresholdImageFilter.cxx b/packages/itk/src/bbitkBinaryThresholdImageFilter.cxx index 5a093d7..a97caa0 100644 --- a/packages/itk/src/bbitkBinaryThresholdImageFilter.cxx +++ b/packages/itk/src/bbitkBinaryThresholdImageFilter.cxx @@ -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