1 /*------------------------------------------------------------------------
3 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
4 l'Image). All rights reserved. See Doc/License.txt or
5 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
7 This software is distributed WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9 PURPOSE. See the above copyright notices for more information.
11 ------------------------------------------------------------------------*/
13 /* =================================================
14 * @file clitkFillMask.cxx
20 ===================================================*/
24 #include "clitkFillMask_ggo.h"
26 #include "clitkFillMaskGenericFilter.h"
29 //--------------------------------------------------------------------
30 int main(int argc, char * argv[]) {
33 GGO(clitkFillMask,args_info);
37 clitk::FillMaskGenericFilter::Pointer genericFilter=clitk::FillMaskGenericFilter::New();
39 genericFilter->SetArgsInfo(args_info);
40 genericFilter->Update();
45 //--------------------------------------------------------------------