X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkUnsharpMask.cxx;h=6202a79c067959c4be9557946f9446c9a81af03d;hb=afede09ad631dcf7297e3189aeb1d2288fb25902;hp=d222ca1c6767dd2d317e473b4dda08f37c1c9905;hpb=1a829c85824379cb013ca326d8c80e89a3f2c883;p=clitk.git diff --git a/tools/clitkUnsharpMask.cxx b/tools/clitkUnsharpMask.cxx index d222ca1..6202a79 100644 --- a/tools/clitkUnsharpMask.cxx +++ b/tools/clitkUnsharpMask.cxx @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ /* ================================================= * @file clitkUnsharpMaskGenericFilter.txx @@ -30,20 +30,21 @@ #include "clitkUnsharpMaskGenericFilter.h" //-------------------------------------------------------------------- -int main(int argc, char * argv[]) { +int main(int argc, char * argv[]) +{ - // Init command line - GGO(clitkUnsharpMask, args_info); - CLITK_INIT; + // Init command line + GGO(clitkUnsharpMask, args_info); + CLITK_INIT; - // Filter - typedef clitk::UnsharpMaskGenericFilter FilterType; - FilterType::Pointer filter = FilterType::New(); + // Filter + typedef clitk::UnsharpMaskGenericFilter FilterType; + FilterType::Pointer filter = FilterType::New(); - filter->SetArgsInfo(args_info); - filter->Update(); + filter->SetArgsInfo(args_info); + filter->Update(); - return EXIT_SUCCESS; + return EXIT_SUCCESS; }// end main //--------------------------------------------------------------------