]> Creatis software - clitk.git/blob - common/clitkCommon.h
Add define to avoid vtk warning on mac
[clitk.git] / common / clitkCommon.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 #ifndef CLITKCOMMON_H
20 #define CLITKCOMMON_H
21
22 // clitk include
23 #include "clitkPortability.h"
24 #include "clitkDD.h"
25 #include "clitkExceptionObject.h"
26
27 // itk include (include std)
28 #include <itkContinuousIndex.h>
29 #include <itkMacro.h>
30 #include <itkImageRegionConstIterator.h>
31 #include <itkImageRegionIterator.h>
32
33 // std include
34 #include <fstream>
35
36 // Include for "rusage"
37 #include <ctime> 
38 #if defined(unix) || defined(__APPLE__)
39 #  include <sys/time.h>
40 #  include <sys/resource.h>
41 #elif defined(_WIN32)
42 #  include <windows.h>
43 #  include <stdint.h>
44 #endif
45
46 #define VTK_EXCLUDE_STRSTREAM_HEADERS
47
48 //--------------------------------------------------------------------
49 namespace clitk {
50
51   typedef unsigned char uchar;
52   typedef unsigned short ushort;
53   typedef unsigned int uint;
54   
55 #define CLITK_TRY_CATCH_EXIT(func) \
56   try { \
57     func; \
58   } \
59   catch (const itk::ExceptionObject& e) { \
60     e.Print(std::cout); \
61     exit(-1);\
62   } \
63   catch (const std::exception& e) { \
64     std::cout << e.what() << std::endl; \
65     exit(-2);\
66   } \
67   catch (...) { \
68     std::cout << "Unknown excpetion" << std::endl; \
69     exit(-3); \
70   }
71     
72
73   //--------------------------------------------------------------------
74   // when everything goes wrong
75 #define WHEREAMI "[ " << __FILE__  << " ] line " << __LINE__
76 #define FATAL(a) std::cerr << "ERROR in " << WHEREAMI << ": " << a; exit(0);
77   
78   //--------------------------------------------------------------------
79   // GGO with modified struct name
80 #define GGO(ggo_filename, args_info)                                    \
81   args_info_##ggo_filename args_info;                                   \
82   cmdline_parser_##ggo_filename##2(argc, argv, &args_info, 1, 1, 0);                    \
83   if (args_info.config_given)                                           \
84     cmdline_parser_##ggo_filename##_configfile (args_info.config_arg, &args_info, 0, 0, 1); \
85   else cmdline_parser_##ggo_filename(argc, argv, &args_info);  
86
87   //--------------------------------------------------------------------
88   // skip line with #
89   void skipComment(std::istream & is);
90
91   //--------------------------------------------------------------------
92   // linear (rough) conversion from Hounsfield Unit to density
93   double HU2density(double HU);
94
95   //--------------------------------------------------------------------
96   // Return filename extension
97   std::string GetExtension(const std::string& filename);
98   
99   //--------------------------------------------------------------------
100   // Convert float, double ... to string
101   template<class T> std::string toString(const T & t);
102   template<class T> std::string toStringVector(const T * t, const int n);
103   template<class T> std::string toStringVector(const T & t, const int n);
104   template<class T> std::string toStringVector(const std::vector<T> & t);
105   template <class T> bool fromString(T& t, 
106                                      const std::string& s, 
107                                      std::ios_base& (*f)(std::ios_base&)=std::dec);
108
109   //--------------------------------------------------------------------
110   // Display a progress %
111   void VerboseInProgress(const int nb, const int current, const int percentage);
112   void VerboseInProgressInPercentage(const int nb, const int current, const int percentage);
113
114   //--------------------------------------------------------------------
115   // Convert a pixel type to another (downcast)
116   template<class TPixelUp, class TPixelDown>
117   TPixelDown PixelTypeDownCast(const TPixelUp & x);
118   template<>
119   float PixelTypeDownCast(const double & x);
120
121   //--------------------------------------------------------------------
122   // Return the indexes of sorted values in a vector
123   template<class Type> struct vectorComparisonLowerThan;
124   template<class Type> struct vectorComparisonGreaterThan;
125   template<class Type>
126   void GetSortedIndex(const std::vector<Type> & toSort, std::vector<int> & index, bool increasing=true);
127
128   //--------------------------------------------------------------------
129   // Return the name of a type as a string
130   template<class TPixel>
131   std::string GetTypeAsString();
132   
133   //--------------------------------------------------------------------
134   // Convert radian / degree
135   double rad2deg(double anglerad);
136   double deg2rad(double anglerad);
137
138   //--------------------------------------------------------------------
139   int GetTypeSizeFromString(const std::string & type);
140
141   //--------------------------------------------------------------------
142   // Special case to handle "signed_char = schar" ...
143   template<class T>
144   bool IsSameType(std::string t) { return (t==GetTypeAsString<T>()); }
145   template<> bool IsSameType<char>(std::string t);
146   template<> bool IsSameType<signed char>(std::string t);
147   template<> bool IsSameType<unsigned char>(std::string t);
148   template<> bool IsSameType<unsigned short>(std::string t);
149
150   //--------------------------------------------------------------------
151   template<class T1>
152   std::string CreateListOfTypes(bool last=true) {
153     return GetTypeAsString<T1>();
154   }
155   
156   template<class T1, class T2>
157   std::string CreateListOfTypes(bool last=true) {
158     if (last) return CreateListOfTypes<T1>()+" and "+CreateListOfTypes<T2>();
159     else return CreateListOfTypes<T1>()+", "+CreateListOfTypes<T2>();
160   }
161   
162   template<class T1, class T2, class T3>
163   std::string CreateListOfTypes(bool last=true) {
164     if (last) return CreateListOfTypes<T1,T2>(false)+" and "+CreateListOfTypes<T3>();
165     else return CreateListOfTypes<T1,T2>(false)+", "+CreateListOfTypes<T3>();
166   }
167
168   template<class T1, class T2, class T3, class T4>
169   std::string CreateListOfTypes(bool last=true) {
170     if (last) return CreateListOfTypes<T1,T2,T3>(false)+" and "+CreateListOfTypes<T4>();
171     else return CreateListOfTypes<T1,T2,T3>(false)+", "+CreateListOfTypes<T4>();
172   }
173
174   template<class T1, class T2, class T3, class T4, class T5>
175   std::string CreateListOfTypes(bool last=true) {
176     if (last) return CreateListOfTypes<T1,T2,T3,T4>(false)+" and "+CreateListOfTypes<T5>();
177     else return CreateListOfTypes<T1,T2,T3,T4>(false)+", "+CreateListOfTypes<T5>();
178   }
179
180   template<class T1, class T2, class T3, class T4, class T5, class T6>
181   std::string CreateListOfTypes(bool last=true) {
182     if (last) return CreateListOfTypes<T1,T2,T3,T4,T5>(false)+" and "+CreateListOfTypes<T6>();
183     else return CreateListOfTypes<T1,T2,T3,T4,T5>(false)+", "+CreateListOfTypes<T6>();
184   }
185
186   template<class T1, class T2, class T3, class T4, class T5, class T6, class T7>
187   std::string CreateListOfTypes(bool last=true) {
188     if (last) return CreateListOfTypes<T1,T2,T3,T4,T5,T6>(false)+" and "+CreateListOfTypes<T7>();
189     else return CreateListOfTypes<T1,T2,T3,T4,T5,T6>(false)+", "+CreateListOfTypes<T7>();
190   }
191
192   template<class T1, class T2, class T3, class T4, class T5, class T6, class T7, class T8>
193   std::string CreateListOfTypes(bool last=true) {
194     if (last) return CreateListOfTypes<T1,T2,T3,T4,T5,T6,T7>(false)+" and "+CreateListOfTypes<T8>();
195     else return CreateListOfTypes<T1,T2,T3,T4,T5,T6,T7>(false)+", "+CreateListOfTypes<T8>();
196   }
197   //--------------------------------------------------------------------
198   
199   //--------------------------------------------------------------------
200   void FindAndReplace(std::string & line, const std::string & tofind, const std::string & replacement);
201   void FindAndReplace(std::string & line, const std::vector<std::string> & tofind, const std::vector<std::string> & toreplace);
202   void FindAndReplace(std::ifstream & in, const std::vector<std::string> & tofind, const std::vector<std::string> & toreplace, std::ofstream & out);
203   //--------------------------------------------------------------------
204
205   //--------------------------------------------------------------------
206   double ComputeEuclideanDistanceFromPointToPlane(const itk::ContinuousIndex<double, 3> point, 
207                                                   const itk::ContinuousIndex<double, 3> pointInPlane, 
208                                                   const itk::ContinuousIndex<double, 3> normalPlane);
209
210   //--------------------------------------------------------------------
211   // Open a File for reading/writing
212   void openFileForReading(std::ifstream & is, const std::string & filename);
213   void openFileForWriting(std::ofstream & os, const std::string & filename);
214
215   //--------------------------------------------------------------------
216   void readDoubleFromFile(const std::string & filename, std::vector<double> & list);
217
218   //--------------------------------------------------------------------
219   double cotan(double i);
220   double invcotan(double i);
221
222   //--------------------------------------------------------------------
223   void disableStdCerr();
224   void enableStdCerr();
225
226   //--------------------------------------------------------------------
227   template<class ImageType>
228   void CloneImage(const typename ImageType::Pointer & input, typename ImageType::Pointer & output);
229
230   //--------------------------------------------------------------------
231   void PrintMemoryUsed();
232
233   //--------------------------------------------------------------------
234   // Convert a map to a vector
235   template <typename M, typename V> 
236   void MapToVecFirst(const M & m, V & v);
237   template <typename M, typename V> 
238   void MapToVecSecond(const M & m, V & v);
239
240   //--------------------------------------------------------------------
241   // Find/replace string
242   template<class T>
243   int inline findAndReplace(T& source, const T& find, const T& replace);
244
245 #include "clitkCommon.txx"
246
247 } // end namespace
248
249 #endif /* end #define CLITKCOMMON_H */
250