X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fitk%2Fsrc%2FbbitkBinaryThresholdImageFilter.h;h=0ea322d32cf1b78333c1d8592d0a708714b41f80;hb=f5db17702a2c51a5933f6c556d070167e4db9cfd;hp=3f6ed3ab52c23f477eb00dfda35188876a25f823;hpb=0500d9322df28ddf952e0082d5da47b7a8b69a07;p=bbtk.git diff --git a/packages/itk/src/bbitkBinaryThresholdImageFilter.h b/packages/itk/src/bbitkBinaryThresholdImageFilter.h index 3f6ed3a..0ea322d 100644 --- a/packages/itk/src/bbitkBinaryThresholdImageFilter.h +++ b/packages/itk/src/bbitkBinaryThresholdImageFilter.h @@ -1,6 +1,6 @@ #ifdef _USE_ITK_ -#include "bbtkUserBlackBox.h" +#include "bbtkAtomicBlackBox.h" #include "itkBinaryThresholdImageFilter.h" #include "bbitkImage.h" @@ -10,11 +10,11 @@ namespace bbitk template class /*BBTK_EXPORT*/ BinaryThresholdImageFilter : - public bbtk::UserBlackBox, + public bbtk::AtomicBlackBox, public itk::BinaryThresholdImageFilter { BBTK_USER_BLACK_BOX_INTERFACE(BinaryThresholdImageFilter, - bbtk::UserBlackBox); + bbtk::AtomicBlackBox); typedef itk::BinaryThresholdImageFilter itkParent; BBTK_DECLARE_ITK_INPUT(itkParent,In,const T*); BBTK_DECLARE_ITK_PARAM(itkParent,LowerThreshold,typename T::PixelType); @@ -54,10 +54,10 @@ namespace bbitk //=================================================== class /*BBTK_EXPORT*/ BinaryThresholdImageFilterGeneric : - public bbtk::UserBlackBox + public bbtk::AtomicBlackBox { BBTK_USER_BLACK_BOX_INTERFACE(BinaryThresholdImageFilterGeneric, - bbtk::UserBlackBox); + bbtk::AtomicBlackBox); BBTK_DECLARE_INPUT(In,anyImagePointer); BBTK_DECLARE_INPUT(LowerThreshold,double); BBTK_DECLARE_INPUT(UpperThreshold,double); @@ -74,7 +74,7 @@ namespace bbitk }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(BinaryThresholdImageFilterGeneric, - bbtk::UserBlackBox); + bbtk::AtomicBlackBox); BBTK_NAME("BinaryThresholdImageFilter"); BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr"); BBTK_CATEGORY("filter;image");