X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=segmentation%2FclitkDecomposeAndReconstruct.cxx;fp=segmentation%2FclitkDecomposeAndReconstruct.cxx;h=a1fc1c4b89b76312d3db4aded1f720b5827e800d;hb=2f5b335da5621bdfc86cb594cc667d0929f4d8e3;hp=0000000000000000000000000000000000000000;hpb=e61455caad373a138edde0716ce5a556f4d1a624;p=clitk.git diff --git a/segmentation/clitkDecomposeAndReconstruct.cxx b/segmentation/clitkDecomposeAndReconstruct.cxx new file mode 100755 index 0000000..a1fc1c4 --- /dev/null +++ b/segmentation/clitkDecomposeAndReconstruct.cxx @@ -0,0 +1,51 @@ +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + 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 + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. + + It is distributed under dual licence + + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +======================================================================-====*/ + +/* ================================================= + * @file clitkDecomposeAndReconstruct.cxx + * @author + * @date + * + * @brief + * + ===================================================*/ + + +// clitk +#include "clitkDecomposeAndReconstruct_ggo.h" +#include "clitkIO.h" +#include "clitkDecomposeAndReconstructGenericFilter.h" + + +//-------------------------------------------------------------------- +int main(int argc, char * argv[]) { + + // Init command line + GGO(clitkDecomposeAndReconstruct, args_info); + CLITK_INIT; + + // Filter + clitk::DecomposeAndReconstructGenericFilter::Pointer genericFilter=clitk::DecomposeAndReconstructGenericFilter::New(); + + genericFilter->SetArgsInfo(args_info); + genericFilter->Update(); + + return EXIT_SUCCESS; +}// end main + +//--------------------------------------------------------------------