From 948830b9d081dd94e160cc293cc312e1b0c754d6 Mon Sep 17 00:00:00 2001 From: dsarrut Date: Wed, 3 Mar 2010 12:47:31 +0000 Subject: [PATCH] - ok Joel, you are righet, I forgot the file ... --- tools/clitkSignalApparentMotionTracking.cxx | 51 +++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tools/clitkSignalApparentMotionTracking.cxx diff --git a/tools/clitkSignalApparentMotionTracking.cxx b/tools/clitkSignalApparentMotionTracking.cxx new file mode 100644 index 0000000..949c647 --- /dev/null +++ b/tools/clitkSignalApparentMotionTracking.cxx @@ -0,0 +1,51 @@ +/*========================================================================= + + Program: clitk + Module: $RCSfile: clitkSignalApparentMotionTracking.cxx,v $ + Language: C++ + Date: $Date: 2010/03/03 12:47:31 $ + Version: $Revision: 1.1 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + +#ifndef CLITKSIGNALAPPARENTMOTIONTRACKING_CXX +#define CLITKSIGNALAPPARENTMOTIONTRACKING_CXX +/** + ================================================= + * @file clitkSignalApparentMotionTracking.cxx + * @author David Sarrut + * @date Sept 2009 + * + =================================================*/ + +// clitk include +#include "clitkSignalApparentMotionTracking_ggo.h" +#include "clitkSignalApparentMotionTrackingFilter.h" +#include "clitkCommon.h" + +int main(int argc, char * argv[]) { + + // Init command line + GGO(clitkSignalApparentMotionTracking,args_info); + CLITK_INIT; + + // Init filter + clitk::SignalApparentMotionTrackingFilter filter; + filter.SetParameters(args_info); + + // Run + filter.Update(); + + // This is the end my friend + return EXIT_SUCCESS; +} + +#endif -- 2.46.1