]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkBinaryThresholdImageFilter.h
Renamed UserBlackBox into AtomicBlackBox which is a better name (versus ComplexBlackB...
[bbtk.git] / packages / itk / src / bbitkBinaryThresholdImageFilter.h
index 3f6ed3ab52c23f477eb00dfda35188876a25f823..0ea322d32cf1b78333c1d8592d0a708714b41f80 100644 (file)
@@ -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 T>
   class /*BBTK_EXPORT*/ BinaryThresholdImageFilter
     : 
-    public bbtk::UserBlackBox,
+    public bbtk::AtomicBlackBox,
     public itk::BinaryThresholdImageFilter<T,T>
   {
     BBTK_USER_BLACK_BOX_INTERFACE(BinaryThresholdImageFilter,
-                                 bbtk::UserBlackBox);
+                                 bbtk::AtomicBlackBox);
     typedef itk::BinaryThresholdImageFilter<T,T> 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");