SimpleITK  1.2.4
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 
49  virtual ~HashImageFilter();
50 
52 
53  enum HashFunction { SHA1, MD5 };
54  SITK_RETURN_SELF_TYPE_HEADER SetHashFunction ( HashFunction hashFunction );
55  HashFunction GetHashFunction () const;
56 
58  std::string GetName() const { return std::string ( "Hash"); }
59 
60  // Print ourselves out
61  std::string ToString() const;
62 
63  std::string Execute ( const Image& );
64 
65 
66  private:
68 
69  template <class TImageType> std::string ExecuteInternal ( const Image& image );
70  template <class TImageType> std::string ExecuteInternalLabelImage ( const Image& image );
71 
72  // friend to get access to executeInternal member
73  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
74  friend struct detail::ExecuteInternalLabelImageAddressor<MemberFunctionType>;
75 
76  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
77  };
78 
80  }
81 }
82 #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 Image class for SimpleITK.
Definition: sitkImage.h:78
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