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