X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkResampleImage.cxx;h=f289128e86fe8f6ffc369b5e3644db47c7c0b079;hb=6f42299dcd2fcfebe3ee92136b531ae349787070;hp=acecb052b7ef7182b868566396fcfa2d9a789b63;hpb=de524de471ddbb04afdea1de77af57f4d34bcaa1;p=clitk.git diff --git a/tools/clitkResampleImage.cxx b/tools/clitkResampleImage.cxx index acecb05..f289128 100644 --- a/tools/clitkResampleImage.cxx +++ b/tools/clitkResampleImage.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,7 +22,8 @@ #include "clitkResampleImageGenericFilter.h" //-------------------------------------------------------------------- -int main(int argc, char * argv[]) { +int main(int argc, char * argv[]) +{ // Init command line GGO(clitkResampleImage, args_info); @@ -30,11 +31,11 @@ int main(int argc, char * argv[]) { // Filter 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