]> Creatis software - clitk.git/commitdiff
Finalize the creation of clitkNVectorImageTo4DImage tool
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 14 Sep 2016 07:46:51 +0000 (09:46 +0200)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 14 Sep 2016 07:46:51 +0000 (09:46 +0200)
tools/clitkNVectorImageTo4DImage.ggo
tools/clitkNVectorImageTo4DImageFilter.h [deleted file]
tools/clitkNVectorImageTo4DImageFilter.txx [deleted file]
tools/clitkNVectorImageTo4DImageGenericFilter.h
tools/clitkNVectorImageTo4DImageGenericFilter.txx

index d72a700084c44b2c8188fdcfd2c0df73ad87b827..32fcef3aca85334890291608a819098900a94efc 100644 (file)
@@ -8,5 +8,4 @@ option "verbose"        v       "Verbose"                         flag          off
 
 option "input"         i       "Input image filename"            string        yes
 option "output"        o       "Output image filename"           string        yes
-option "componentIndex" c      "Component index to extract"              int   no      default="0"
 
diff --git a/tools/clitkNVectorImageTo4DImageFilter.h b/tools/clitkNVectorImageTo4DImageFilter.h
deleted file mode 100644 (file)
index f76eb9c..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-/*=========================================================================
-  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://www.centreleonberard.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 clitkNVectorImageTo4DImageFilter_h
-#define clitkNVectorImageTo4DImageFilter_h
-
-/* =================================================
- * @file   clitkNVectorImageTo4DImageFilter.h
- * @author 
- * @date   
- * 
- * @brief 
- * 
- ===================================================*/
-
-
-// clitk include
-#include "clitkIO.h"
-#include "clitkCommon.h"
-
-//itk include
-#include "itkImageToImageFilter.h"
-
-namespace clitk 
-{
-
-  template <class InputImageType, class OutputImageType>
-  class ITK_EXPORT NVectorImageTo4DImageFilter :
-    public itk::ImageToImageFilter<InputImageType, OutputImageType>
-  {
-  public:
-    //----------------------------------------
-    // ITK
-    //----------------------------------------
-    typedef NVectorImageTo4DImageFilter                                                 Self;
-    typedef itk::ImageToImageFilter<InputImageType, OutputImageType>  Superclass;
-    typedef itk::SmartPointer<Self>                                   Pointer;
-    typedef itk::SmartPointer<const Self>                             ConstPointer;
-   
-    // Method for creation through the object factory
-    itkNewMacro(Self);  
-
-    // Run-time type information (and related methods)
-    itkTypeMacro( NVectorImageTo4DImageFilter, ImageToImageFilter );
-
-    /** Dimension of the domain space. */
-    itkStaticConstMacro(InputImageDimension, unsigned int, Superclass::InputImageDimension);
-    itkStaticConstMacro(OutputImageDimension, unsigned int, Superclass::OutputImageDimension);
-
-    //----------------------------------------
-    // Typedefs
-    //----------------------------------------
-    typedef typename OutputImageType::RegionType OutputImageRegionType;
-
-    //----------------------------------------
-    // Set & Get
-    //----------------------------------------    
-    itkBooleanMacro(Verbose);
-    itkSetMacro( Verbose, bool);
-    itkGetConstReferenceMacro( Verbose, bool);
-    itkSetMacro(ComponentIndex, unsigned int);
-    itkGetConstMacro(ComponentIndex, unsigned int);   
-
-  protected:
-
-    //----------------------------------------  
-    // Constructor & Destructor
-    //----------------------------------------  
-    NVectorImageTo4DImageFilter();
-    ~NVectorImageTo4DImageFilter() {};
-
-    //----------------------------------------  
-    // Update
-    //----------------------------------------  
-    void ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread, itk::ThreadIdType threadId );
-   
-    //----------------------------------------  
-    // Data members
-    //----------------------------------------
-    bool m_Verbose;
-    unsigned int m_ComponentIndex;
-
-  };
-
-
-} // end namespace clitk
-
-#ifndef ITK_MANUAL_INSTANTIATION
-#include "clitkNVectorImageTo4DImageFilter.txx"
-#endif
-
-#endif // #define clitkNVectorImageTo4DImageFilter_h
-
-
diff --git a/tools/clitkNVectorImageTo4DImageFilter.txx b/tools/clitkNVectorImageTo4DImageFilter.txx
deleted file mode 100644 (file)
index f5570cd..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*=========================================================================
-  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://www.centreleonberard.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 clitkNVectorImageTo4DImageFilter_txx
-#define clitkNVectorImageTo4DImageFilter_txx
-
-/* =================================================
- * @file   clitkNVectorImageTo4DImageFilter.txx
- * @author 
- * @date   
- * 
- * @brief 
- * 
- ===================================================*/
-
-
-namespace clitk
-{
-
-  //-------------------------------------------------------------------
-  // Constructor
-  //-------------------------------------------------------------------
-  template<class InputImageType, class OutputImageType>
-  NVectorImageTo4DImageFilter<InputImageType, OutputImageType>::NVectorImageTo4DImageFilter()
-  {
-   m_Verbose=false;
-   m_ComponentIndex=0;
-  }
-
-
-  //-------------------------------------------------------------------
-  // Generate Data
-  //-------------------------------------------------------------------
-  template<class InputImageType, class  OutputImageType> 
-  void NVectorImageTo4DImageFilter<InputImageType, OutputImageType>::ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread, itk::ThreadIdType threadId)
-  {
-    // Iterators
-    typename OutputImageType::Pointer output=this->GetOutput();
-    typename InputImageType::ConstPointer input=this->GetInput();
-
-    typedef itk::ImageRegionConstIterator<InputImageType> InputIteratorType;
-    InputIteratorType inputIt (input, outputRegionForThread);
-
-    typedef itk::ImageRegionIterator<OutputImageType> OutputIteratorType;
-    OutputIteratorType outputIt (output, outputRegionForThread);
-    
-    while(! inputIt.IsAtEnd() )
-      {
-       //outputIt.Set(inputIt.Get()[m_ComponentIndex]);
-       ++outputIt;
-       ++inputIt;
-      }
-  }
-
-
-}//end clitk
-#endif //#define clitkNVectorImageTo4DImageFilter_txx
index 7b6c074893ee34e2761dc64791181604b71cc022..14774ae3174ef46e215ee32092e294cd818f1ed4 100644 (file)
@@ -33,7 +33,6 @@
 #include "clitkCommon.h"
 #include "clitkImageCommon.h"
 #include "clitkNVectorImageTo4DImage_ggo.h"
-#include "clitkNVectorImageTo4DImageFilter.h"
 
 //itk include
 #include "itkLightObject.h"
index 0c2d42928918620930fb7d69e533477d5e671c44..f85b374ac670780501b29b5162791bc06fd553f2 100644 (file)
@@ -42,8 +42,27 @@ namespace clitk
   {
     if (m_Verbose) std::cout << "Image was detected to be "<<Dimension<<"D and "<< PixelType<<"..."<<std::endl;
 
-    if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and 3D float..." << std::endl;
-    UpdateWithDimAndPixelType<Dimension, float >();
+    if (PixelType == "short") {
+      UpdateWithDimAndPixelType<Dimension, short>();
+    } else if (PixelType == "unsigned short") {
+      UpdateWithDimAndPixelType<Dimension, unsigned short>();
+    } else if (PixelType == "unsigned_short") {
+      UpdateWithDimAndPixelType<Dimension, unsigned short>();
+    } else if (PixelType == "char") {
+      UpdateWithDimAndPixelType<Dimension, char>();
+    } else if (PixelType == "unsigned_char") {
+      UpdateWithDimAndPixelType<Dimension, unsigned char>();
+    } else if (PixelType == "int") {
+      UpdateWithDimAndPixelType<Dimension, int>();
+    } else if (PixelType == "unsigned_int") {
+      UpdateWithDimAndPixelType<Dimension, unsigned int>();
+    } else if (PixelType == "double") {
+      UpdateWithDimAndPixelType<Dimension, double>();
+    } else if (PixelType == "float") {
+      UpdateWithDimAndPixelType<Dimension, float>();
+    } else {
+      std::cerr << "Error, pixel type : \"" << PixelType << "\" unknown !" << std::endl;
+    }
   }