]> Creatis software - clitk.git/blobdiff - tools/clitkResampleImage.cxx
Remove reslice from vvImage. The transform is kept but it's up to the user to use...
[clitk.git] / tools / clitkResampleImage.cxx
index acecb052b7ef7182b868566396fcfa2d9a789b63..8eec6ae258462e60e9c9f0c617f0b1b7fd5ab700 100644 (file)
@@ -1,7 +1,7 @@
 /*=========================================================================
   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
-  Authors belong to: 
+  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
 #include "clitkResampleImageGenericFilter.h"
 
 //--------------------------------------------------------------------
-int main(int argc, char * argv[]) {
+int main(int argc, char * argv[])
+{
 
   // Init command line
   GGO(clitkResampleImage, args_info);
 
   // Filter
-  typedef clitk::ResampleImageGenericFilter<args_info_clitkResampleImage> FilterType;
+  typedef clitk::ResampleImageGenericFilter FilterType;
   FilterType::Pointer filter = FilterType::New();
-  
+
   filter->SetArgsInfo(args_info);
   filter->Update();
 
-  // this is the end my friend  
+  // this is the end my friend
   return EXIT_SUCCESS;
 
 }// end main