X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=tools%2FclitkZeroVF.cxx;h=f31d7f58a60bb6328b6b006d103bd1edfea60bc2;hb=7dd4f61d0341af69d3c6ddfb115a219bc54284c3;hp=99013210e456bd3780aa88e6cb578684badbdf28;hpb=0b7c9b1e1215634b02cbd38d4e4ba101d6111ba8;p=clitk.git diff --git a/tools/clitkZeroVF.cxx b/tools/clitkZeroVF.cxx index 9901321..f31d7f5 100644 --- a/tools/clitkZeroVF.cxx +++ b/tools/clitkZeroVF.cxx @@ -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 @@ -22,24 +22,25 @@ * @file clitkZeroVF.cxx * @author Joel Schaerer * @date July 20 10:14:53 2007 - * + * * @brief Creates a VF filled with zeros the size of the input VF - * + * */ // clitk include #include "clitkZeroVF_ggo.h" #include "clitkIO.h" #include "clitkImageCommon.h" +#include "clitkCommon.h" #include "clitkZeroVFGenericFilter.h" int main( int argc, char *argv[] ) { - + // Init command line GGO(clitkZeroVF, args_info); CLITK_INIT; - + //Creation of the generic filter clitk::ZeroVFGenericFilter::Pointer zeroVFGenericFilter= clitk::ZeroVFGenericFilter::New(); @@ -49,7 +50,7 @@ int main( int argc, char *argv[] ) zeroVFGenericFilter->SetVerbose(args_info.verbose_flag); //update - zeroVFGenericFilter->Update(); + zeroVFGenericFilter->Update(); return EXIT_SUCCESS; } #endif