]> Creatis software - clitk.git/blobdiff - filters/clitkBinarizeImageGenericFilter.txx
Display window and level when using local windowing
[clitk.git] / filters / clitkBinarizeImageGenericFilter.txx
index 206b1431380bf14a54f1c4cbf30e4dba093b6bfe..a35a7304c802c4e5e63b2e6418af4a74afdbcf5f 100644 (file)
@@ -1,19 +1,30 @@
-#ifndef clitkBinarizeImageGenericFilter_txx
-#define clitkBinarizeImageGenericFilter_txx
-
-/* =================================================
- * @file   clitkBinarizeImageGenericFilter.txx
- * @author Jef Vandemeulebroucke <jef@creatis.insa-lyon.fr>
- * @date   29 june 2009
- * 
- * @brief 
- * 
- ===================================================*/
+/*=========================================================================
+  Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
+
+  Authors belong to: 
+  - University of LYON              http://www.universite-lyon.fr/
+  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
+
+  This software is distributed WITHOUT ANY WARRANTY; without even
+  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+  PURPOSE.  See the copyright notices for more information.
+
+  It is distributed under dual licence
+
+  - BSD        See included LICENSE.txt file
+  - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+======================================================================-====*/
+
+#ifndef CLITKBINARIZEIMAGEGENERICFILTER_TXX
+#define CLITKBINARIZEIMAGEGENERICFILTER_TXX
 
 // itk include
 #include "itkBinaryThresholdImageFilter.h"
 #include "itkMaskImageFilter.h"
 #include "itkMaskNegatedImageFilter.h"
+#include <clitkCommon.h>
+// #include <tiff.h>
 
 namespace clitk
 {
@@ -33,10 +44,7 @@ namespace clitk
   template<class args_info_type>
   template<unsigned int Dim>
   void BinarizeImageGenericFilter<args_info_type>::InitializeImageType() {      
-    ADD_IMAGE_TYPE(Dim, char);
-    ADD_IMAGE_TYPE(Dim, short);
-    ADD_IMAGE_TYPE(Dim, int);
-    //ADD_IMAGE_TYPE(Dim, float);
+    ADD_DEFAULT_IMAGE_TYPES(Dim);
   }
   //--------------------------------------------------------------------
   
@@ -46,7 +54,6 @@ namespace clitk
   void BinarizeImageGenericFilter<args_info_type>::SetArgsInfo(const args_info_type & a) {
     mArgsInfo=a;
     SetIOVerbose(mArgsInfo.verbose_flag);
-
     if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes();
 
     if (mArgsInfo.input_given) {
@@ -83,15 +90,15 @@ namespace clitk
     if (mArgsInfo.lower_given) thresholdFilter->SetLowerThreshold(static_cast<PixelType>(mArgsInfo.lower_arg));
     if (mArgsInfo.upper_given) thresholdFilter->SetUpperThreshold(static_cast<PixelType>(mArgsInfo.upper_arg));
 
-    DD(mArgsInfo.lower_given);
-    DD(mArgsInfo.upper_given);
-    DD(mArgsInfo.lower_arg);
-    DD(mArgsInfo.upper_arg);
-    DD(mArgsInfo.fg_arg);
-    DD(mArgsInfo.bg_arg);
-    DD(mArgsInfo.fg_given);
-    DD(mArgsInfo.bg_given);
-    DD(mArgsInfo.mode_arg);
+    // DD(mArgsInfo.lower_given);
+    // DD(mArgsInfo.upper_given);
+    // DD(mArgsInfo.lower_arg);
+    // DD(mArgsInfo.upper_arg);
+    // DD(mArgsInfo.fg_arg);
+    // DD(mArgsInfo.bg_arg);
+    // DD(mArgsInfo.fg_given);
+    // DD(mArgsInfo.bg_given);
+    // DD(mArgsInfo.mode_arg);
 
 // <<<<<<< clitkBinarizeImageGenericFilter.txx
 //     DD(mArgsInfo.useFG_flag);