X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkCommon.h;h=769ca63f0bf4400cbb783cf53d3bd7b44b3fc293;hb=2252420857d1554424d1f2c69ea68547bc759678;hp=1c5f9a09bf4d6241046e19481b2b267ae644b1df;hpb=931a42358442f4ee4f314613c991c838d4b4e3b7;p=clitk.git diff --git a/common/clitkCommon.h b/common/clitkCommon.h index 1c5f9a0..769ca63 100644 --- a/common/clitkCommon.h +++ b/common/clitkCommon.h @@ -1,67 +1,86 @@ +/*========================================================================= + 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 CLITKCOMMON_H #define CLITKCOMMON_H -/** - ------------------------------------------------------------------- - * @file clitkCommon.h - * @author David Sarrut - * @date 17 May 2006 07:57:56 - - * @brief +// clitk include +#include "clitkPortability.h" +#include "clitkDD.h" +#include "clitkExceptionObject.h" - -------------------------------------------------------------------*/ +// itk include (include std) +#include +#include +#include +#include // std include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include "itkMacro.h" -#include +// Include for "rusage" +#include +#if defined(unix) || defined(__APPLE__) +# include +# include +#elif defined(WIN32) +# include +#endif //-------------------------------------------------------------------- namespace clitk { - -#if defined(WIN32) -#define lrint(x) (floor(x+(x>0) ? 0.5 : -0.5)) -#endif - + typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; + +#define CLITK_TRY_CATCH_EXIT(func) \ + try { \ + func; \ + } \ + catch (const itk::ExceptionObject& e) { \ + e.Print(std::cout); \ + exit(-1);\ + } \ + catch (const std::exception& e) { \ + std::cout << e.what() << std::endl; \ + exit(-2);\ + } \ + catch (...) { \ + std::cout << "Unknown excpetion" << std::endl; \ + exit(-3); \ + } + //-------------------------------------------------------------------- - // display -#define DD(a) std::cout << #a " = [ " << a << " ]" << std::endl; -#define DDV(a,n) { std::cout << #a " = [ "; for(unsigned int _i_=0; _i_ std::string toStringVector(const T * t, const int n); template std::string toStringVector(const T & t, const int n); template std::string toStringVector(const std::vector & t); + template bool fromString(T& t, + const std::string& s, + std::ios_base& (*f)(std::ios_base&)=std::dec); //-------------------------------------------------------------------- // Display a progress % @@ -187,6 +209,9 @@ namespace clitk { void openFileForReading(std::ifstream & is, const std::string & filename); void openFileForWriting(std::ofstream & os, const std::string & filename); + //-------------------------------------------------------------------- + void readDoubleFromFile(const std::string & filename, std::vector & list); + //-------------------------------------------------------------------- double cotan(double i); double invcotan(double i); @@ -194,7 +219,21 @@ namespace clitk { //-------------------------------------------------------------------- void disableStdCerr(); void enableStdCerr(); - + + //-------------------------------------------------------------------- + template + void CloneImage(const typename ImageType::Pointer & input, typename ImageType::Pointer & output); + + //-------------------------------------------------------------------- + void PrintMemoryUsed(); + + //-------------------------------------------------------------------- + // Convert a map to a vector + template + void MapToVecFirst(const M & m, V & v); + template + void MapToVecSecond(const M & m, V & v); + #include "clitkCommon.txx" } // end namespace