]> Creatis software - clitk.git/blob - tools/clitkSetBackground.cxx
removed headers
[clitk.git] / tools / clitkSetBackground.cxx
1
2 /* =================================================
3  * @file   clitkSetBackground.cxx
4  * @author 
5  * @date   
6  * 
7  * @brief 
8  * 
9  ===================================================*/
10
11
12 // clitk
13 #include "clitkSetBackground_ggo.h"
14 #include "clitkIO.h"
15 #include "clitkSetBackgroundGenericFilter.h"
16
17
18 //--------------------------------------------------------------------
19 int main(int argc, char * argv[]) {
20
21   // Init command line
22   GGO(clitkSetBackground,args_info);
23   CLITK_INIT;
24
25   // Filter
26   clitk::SetBackgroundGenericFilter::Pointer genericFilter=clitk::SetBackgroundGenericFilter::New();
27   
28   genericFilter->SetArgsInfo(args_info);
29   genericFilter->Update();
30
31   return EXIT_SUCCESS;
32 }// end main
33
34 //--------------------------------------------------------------------