]> Creatis software - clitk.git/blobdiff - vv/vvToolMedianFilter.cxx
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vvToolMedianFilter.cxx
index 22c122f579920152527a567a677dda77d62785d1..70bbb7792ef14896b6800ed17bc94e84632eb944 100644 (file)
@@ -1,14 +1,31 @@
+/*=========================================================================
+  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://www.centreleonberard.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
+===========================================================================*/
 /*=========================================================================
 
   Program:   vv
   Module:    $RCSfile: vvToolMedianFilter.cxx,v $
   Language:  C++
-  Date:      $Date: 2010/05/18 16:20:57 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2010/10/22 07:38:05 $
+  Version:   $Revision: 1.5 $
   Author :   Bharath Navalpakkam (Bharath.Navalpakkam@creatis.insa-lyon.fr)
 
   Copyright (C) 2010
-  Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
+  Léon Bérard cancer center http://www.centreleonberard.fr
   CREATIS                   http://www.creatis.insa-lyon.fr
 
   This program is free software: you can redistribute it and/or modify
@@ -29,8 +46,7 @@
 #include "vvSlicerManager.h"
 #include "vvSlicer.h"
 #include "vvToolInputSelectorWidget.h"
-#include <clitkMedianImageGenericFilter.h>
-
+#include "clitkMedianImageGenericFilter.h"
 
 //------------------------------------------------------------------------------
 // Create the tool and automagically
@@ -43,17 +59,11 @@ vvToolMedianFilter::vvToolMedianFilter(vvMainWindowBase * parent, Qt::WindowFlag
    vvToolBase<vvToolMedianFilter>(parent),
    Ui::vvToolMedianFilter()
 {
-
   // Setup the UI
-
   Ui_vvToolMedianFilter::setupUi(mToolWidget);
-
   mFilter = new clitk::MedianImageGenericFilter<args_info_clitkMedianImageFilter>;
 
-
-
   // Main filter
-
   // Set how many inputs are needed for this tool
   AddInputSelector("Select one image", mFilter);
 }