]> Creatis software - clitk.git/blob - tools/clitkSignalApparentMotionTracking.cxx
- ok Joel, you are righet, I forgot the file ...
[clitk.git] / tools / clitkSignalApparentMotionTracking.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   clitk
4   Module:    $RCSfile: clitkSignalApparentMotionTracking.cxx,v $
5   Language:  C++
6   Date:      $Date: 2010/03/03 12:47:31 $
7   Version:   $Revision: 1.1 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                              
17 =========================================================================*/
18
19 #ifndef CLITKSIGNALAPPARENTMOTIONTRACKING_CXX
20 #define CLITKSIGNALAPPARENTMOTIONTRACKING_CXX
21 /**
22    =================================================
23    * @file   clitkSignalApparentMotionTracking.cxx
24    * @author David Sarrut <david.sarrut@creatis.insa-lyon.fr>
25    * @date   Sept 2009
26    * 
27    =================================================*/
28
29 // clitk include
30 #include "clitkSignalApparentMotionTracking_ggo.h"
31 #include "clitkSignalApparentMotionTrackingFilter.h"
32 #include "clitkCommon.h"
33
34 int main(int argc, char * argv[]) {
35
36   // Init command line
37   GGO(clitkSignalApparentMotionTracking,args_info);
38   CLITK_INIT;
39
40   // Init filter
41   clitk::SignalApparentMotionTrackingFilter filter;
42   filter.SetParameters(args_info);
43
44   // Run
45   filter.Update();
46
47   // This is the end my friend
48   return EXIT_SUCCESS;  
49 }
50
51 #endif