]> Creatis software - clitk.git/blob - vv/vvToolMedianFilter.h
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vvToolMedianFilter.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================*/
18       /*=========================================================================
19
20     Program:   vv
21     Module:    $RCSfile: vvToolMedianFilter.h,v $
22     Language:  C++
23     Date:      $Date: 2010/04/26 18:21:55 $
24     Version:   $Revision: 1.2 $
25     Author :   Bharath Navalpakkam (Bharath.Navalpakkam@creatis.insa-lyon.fr)
26
27     Copyright (C) 2010
28     Léon Bérard cancer center http://www.centreleonberard.fr
29     CREATIS                   http://www.creatis.insa-lyon.fr
30
31     This program is free software: you can redistribute it and/or modify
32     it under the terms of the GNU General Public License as published by
33     the Free Software Foundation, version 3 of the License.
34
35     This program is distributed in the hope that it will be useful,
36     but WITHOUT ANY WARRANTY; without even the implied warranty of
37     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38     GNU General Public License for more details.
39
40     You should have received a copy of the GNU General Public License
41     along with this program.  If not, see <http://www.gnu.org/licenses/>.
42
43     =========================================================================*/
44
45   #ifndef VVTOOLMedianFilter_H
46   #define VVTOOLMedianFilter_H
47
48   #include <QtGlobal>
49 #if QT_VERSION >= 0x050000
50   #include <QtUiPlugin/QDesignerExportWidget>
51 #else
52   #include <QtDesigner/QDesignerExportWidget>
53 #endif
54   #include "vvToolBase.h"
55   #include "QWidget"
56   #include "vvToolWidgetBase.h"
57   #include "ui_vvToolMedianFilter.h"
58   #include "clitkMedianImageFilter_ggo.h"
59   #include <clitkMedianImageGenericFilter.h>
60
61
62   //------------------------------------------------------------------------------
63   class vvToolMedianFilter:
64     public vvToolWidgetBase,
65     public vvToolBase<vvToolMedianFilter>, 
66     private Ui::vvToolMedianFilter
67   {
68       Q_OBJECT  
69   public:
70       vvToolMedianFilter(vvMainWindowBase* parent=0, Qt::WindowFlags f=0);
71       ~vvToolMedianFilter();
72
73       static void Initialize();
74       virtual void GetArgsInfoFromGUI();
75       virtual void InputIsSelected(vvSlicerManager * m);
76       virtual void apply();
77  
78
79     public slots:    
80     
81      void UpdateH1slider();   
82      void UpdateH2slider();   
83      void UpdateH3slider();
84   protected:
85
86       Ui::vvToolMedianFilter ui;
87      args_info_clitkMedianImageFilter mArgsInfo;
88
89
90   }; // end class vvToolMedianFilter
91   //------------------------------------------------------------------------------
92
93   #endif
94