SimpleITK  1.0.1
sitkHashImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 #ifndef sitkHashImageFilter_h
19 #define sitkHashImageFilter_h
20 
21 #include "sitkMacro.h"
23 #include "sitkImage.h"
24 #include "sitkBasicFilters.h"
25 #include "sitkImageFilter.h"
26 #include "sitkProcessObject.h"
27 
28 namespace itk {
29  namespace simple {
30 
37  : public ProcessObject {
38  public:
40 
41  // function pointer type
42  typedef std::string (Self::*MemberFunctionType)( const Image& );
43 
44  // this filter works with all itk::Image and itk::VectorImage types.
45  typedef typelist::Append<
46  typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList>::Type,
48 
50 
51  enum HashFunction { SHA1, MD5 };
52  SITK_RETURN_SELF_TYPE_HEADER SetHashFunction ( HashFunction hashFunction );
53  HashFunction GetHashFunction () const;
54 
56  std::string GetName() const { return std::string ( "Hash"); }
57 
58  // Print ourselves out
59  std::string ToString() const;
60 
61  std::string Execute ( const Image& );
62 
63 
64  private:
66 
67  template <class TImageType> std::string ExecuteInternal ( const Image& image );
68  template <class TImageType> std::string ExecuteInternalLabelImage ( const Image& image );
69 
70  // friend to get access to executeInternal member
71  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
72  friend struct detail::ExecuteInternalLabelImageAddressor<MemberFunctionType>;
73 
74  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
75  };
76 
78  }
79 }
80 #endif
#define SITKBasicFilters_EXPORT
typelist::Append< typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type, VectorPixelIDTypeList >::Type PixelIDTypeList
std::string Hash(const Image &image, HashImageFilter::HashFunction function=HashImageFilter::SHA1)
The main Image class for SimpleITK.
Definition: sitkImage.h:54
Base class for SimpleITK classes based on ProcessObject.
typelist::MakeTypeList< VectorPixelID< int8_t >, VectorPixelID< uint8_t >, VectorPixelID< int16_t >, VectorPixelID< uint16_t >, VectorPixelID< int32_t >, VectorPixelID< uint32_t >, VectorPixelID< float >, VectorPixelID< double > >::Type VectorPixelIDTypeList
Compute the sha1 or md5 hash of an image.
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory