]> Creatis software - clitk.git/blob - common/clitkImageUtilities.h
Initial revision
[clitk.git] / common / clitkImageUtilities.h
1 #ifndef CLITKIMAGEUTILITIES_H
2 #define CLITKIMAGEUTILITIES_H
3
4 /**
5  ===================================================================
6  * @file   clitkImageUtilities.h
7  * @author David Sarrut <David.Sarrut@creatis.insa-lyon.fr>
8  * @date   22 Sep 2006 10:38:36
9
10  * @brief  
11
12  ===================================================================*/
13
14 // clitk
15 #include "clitkCommon.h"
16 #include "clitkImageCommon.h"
17
18 // std
19 #include <vector>
20 #include <map>
21 #include <set>
22
23 // itk
24 #include "itkImageRegionConstIterator.h"
25
26 namespace clitk {
27   
28   template<class ImageType>
29   int ComputeHowManyDifferentIntensity(const typename ImageType::Pointer & image, 
30                                                                            std::vector<typename ImageType::PixelType> & listOfIntensities);
31   #include "clitkImageUtilities.txx"
32
33 } // end namespace
34
35 #endif /* end #define CLITKIMAGEUTILITIES_H */
36