X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkImageConvert.cxx;h=e54c736d99ae1d9e433204931ebb0c4f7533c9d3;hb=7d4e77191e55f668f316ba3ddf0fddb63e59bd25;hp=ccae95257fd1b1aa61fb05bf8121a17a25b42d90;hpb=931a42358442f4ee4f314613c991c838d4b4e3b7;p=clitk.git diff --git a/tools/clitkImageConvert.cxx b/tools/clitkImageConvert.cxx index ccae952..e54c736 100644 --- a/tools/clitkImageConvert.cxx +++ b/tools/clitkImageConvert.cxx @@ -1,24 +1,22 @@ -/*------------------------------------------------------------------------- - -Program: clitk -Module: $RCSfile: clitkImageConvert.cxx,v $ -Language: C++ -Date: $Date: 2010/01/06 13:31:56 $ -Version: $Revision: 1.1 $ - -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. - -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. - --------------------------------------------------------------------------*/ +/*========================================================================= + 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 +===========================================================================**/ #ifndef CLITKIMAGECONVERT_CXX #define CLITKIMAGECONVERT_CXX - /** ------------------------------------------------- * @file clitkImageConvert.cxx @@ -33,7 +31,8 @@ PURPOSE. See the above copyright notices for more information. #include "clitkImageConvertGenericFilter.h" //-------------------------------------------------------------------= -int main(int argc, char * argv[]) { +int main(int argc, char * argv[]) +{ // init command line GGO(clitkImageConvert, args_info); @@ -41,31 +40,45 @@ int main(int argc, char * argv[]) { // Get list of filenames std::vector l; - for(unsigned int i=0; iSetInputFilenames(l); filter->SetIOVerbose(args_info.verbose_flag); - filter->SetOutputFilename(args_info.output_arg); + filter->SetOutputFilename(output); + filter->SetVV(args_info.vv_flag); + filter->SetNoNiiMeta(args_info.noniimeta_flag); + filter->SetCorrectNegativeSpacingFlag(args_info.correct_flag); + filter->EnableWriteCompression(args_info.compression_flag); if (args_info.type_given) filter->SetOutputPixelType(args_info.type_arg); // Go ! - filter->Update(); + CLITK_TRY_CATCH_EXIT(filter->Update()); - // this is the end my friend + // this is the end my friend return 0; } //-------------------------------------------------------------------= #endif /* end #define CLITKIMAGECONVERT_CXX */ -