]> Creatis software - bbtk.git/blobdiff - packages/itk/src/bbitkBinaryThresholdImageFilter.h
*** empty log message ***
[bbtk.git] / packages / itk / src / bbitkBinaryThresholdImageFilter.h
index 1e2677a0fba7248d06ce279036f66bc4718e5233..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,9 +74,10 @@ namespace bbitk
   };
   
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(BinaryThresholdImageFilterGeneric,
-                               bbtk::UserBlackBox);
+                               bbtk::AtomicBlackBox);
   BBTK_NAME("BinaryThresholdImageFilter");
-  BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+  BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
+  BBTK_CATEGORY("filter;image");
   BBTK_DESCRIPTION("Binarizes an image by thresholding (generic bbification of itk::BinaryThresholdImageFilter)");
   BBTK_INPUT(BinaryThresholdImageFilterGeneric,In,
             "Input image. Can be any itk::Image<T,D>*",anyImagePointer);