]> Creatis software - clitk.git/blob - tools/clitkWarpImage.cxx
Initial revision
[clitk.git] / tools / clitkWarpImage.cxx
1 /*------------------------------------------------------------------------
2                                                                                  
3   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
4   l'Image). All rights reserved. See Doc/License.txt or
5   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
6                                                                                 
7   This software is distributed WITHOUT ANY WARRANTY; without even
8   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9   PURPOSE.  See the above copyright notices for more information.
10                                                                              
11   ------------------------------------------------------------------------*/
12
13 /* =================================================
14  * @file   clitkWarpImage.cxx
15  * @author 
16  * @date   
17  * 
18  * @brief 
19  * 
20  ===================================================*/
21
22
23 // clitk
24 #include "clitkWarpImage_ggo.h"
25 #include "clitkIO.h"
26 #include "clitkWarpImageGenericFilter.h"
27
28
29 //--------------------------------------------------------------------
30 int main(int argc, char * argv[]) {
31
32   // Init command line
33   GGO(clitkWarpImage, args_info);
34   CLITK_INIT;
35
36   // Filter
37   clitk::WarpImageGenericFilter::Pointer genericFilter=clitk::WarpImageGenericFilter::New();
38   
39   genericFilter->SetArgsInfo(args_info);
40   genericFilter->Update();
41
42   return EXIT_SUCCESS;
43 }// end main
44
45 //--------------------------------------------------------------------