]> Creatis software - clitk.git/blobdiff - tools/clitkGuerreroVentilation.cxx
changes in license header
[clitk.git] / tools / clitkGuerreroVentilation.cxx
index c234ec94477d5d4151ffd738acdc97218a276f33..cd0897001a7093c8886bdaa27e814a181b5f1620 100644 (file)
@@ -1,15 +1,20 @@
-/*------------------------------------------------------------------------=
-                                                                                
-  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
-  l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
-                                                                                
+/*=========================================================================
+  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 above copyright notices for more information.
-                                                                             
-  ------------------------------------------------------------------------=*/
+  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   clitkGuerreroVentilation.cxx
@@ -23,7 +28,8 @@
 #include "clitkIO.h"
 
 //--------------------------------------------------------------------
-int main(int argc, char * argv[]) {
+int main(int argc, char * argv[])
+{
 
   // Init command line
   GGO(clitkGuerreroVentilation, args_info);
@@ -32,7 +38,7 @@ int main(int argc, char * argv[]) {
   // Read image dimension
   itk::ImageIOBase::Pointer header = clitk::readImageHeader(args_info.input_arg);
   //unsigned int dim = header->GetNumberOfDimensions();
-  
+
   // Check parameters
   // Main filter
   clitk::GuerreroVentilationGenericFilter filter;
@@ -43,6 +49,6 @@ int main(int argc, char * argv[]) {
   filter.SetUseCorrectFormula(args_info.correct_flag);
   filter.Update();
 
-  // this is the end my friend  
+  // this is the end my friend
   return 0;
 } // end main