]> Creatis software - clitk.git/blobdiff - tools/clitkAffineTransformGenericFilter.h
With ITKv5, change VectorResample and VectorCast Image Filter to Resample and Cast...
[clitk.git] / tools / clitkAffineTransformGenericFilter.h
index 613e1cc677b868305c2cf5e5513baacb7026751a..b4560b69062facdd58b4f09c7b62b6b4f12cae37 100644 (file)
@@ -40,7 +40,9 @@
 #include "itkLightObject.h"
 #include "itkAffineTransform.h"
 #include "itkResampleImageFilter.h"
+#if ( ITK_VERSION_MAJOR < 5 )
 #include "itkVectorResampleImageFilter.h"
+#endif
 
 
 namespace clitk 
@@ -73,7 +75,7 @@ namespace clitk
 
     //----------------------------------------
     // Set & Get
-    //----------------------------------------    
+    //----------------------------------------
     void SetArgsInfo(const args_info_type & a)
     {
       m_ArgsInfo=a;
@@ -82,28 +84,34 @@ namespace clitk
     }
     
     
-    //----------------------------------------  
+    //----------------------------------------
     // Update
-    //----------------------------------------  
+    //----------------------------------------
     void Update();
 
+
+    //----------------------------------------
+    // Compute bounding box
+    //----------------------------------------
+    vnl_vector<double> ComputeSize(vnl_vector<double> inputSize, vnl_matrix<double> transformationMatrix, bool returnMin);
+
   protected:
 
-    //----------------------------------------  
+    //----------------------------------------
     // Constructor & Destructor
-    //----------------------------------------  
+    //----------------------------------------
     AffineTransformGenericFilter();
     ~AffineTransformGenericFilter() {};
 
     
-    //----------------------------------------  
+    //----------------------------------------
     // Templated members
-    //----------------------------------------  
+    //----------------------------------------
     template <unsigned int Dimension>  void UpdateWithDim(std::string PixelType, int Components);
     template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndPixelType();
     template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndVectorType();
 
-    //----------------------------------------  
+    //----------------------------------------
     // Data members
     //----------------------------------------
     args_info_type m_ArgsInfo;