Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
itkHessianMatrixEigenvalueImageFilter.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_H
18 #define ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_H
19 
20 #include <itkImageToImageFilter.h>
21 
22 namespace itk
23 {
24  template< class TInputImageType, class TOutputImageType = TInputImageType, class TMaskImageType = itk::Image<short,3> >
26  : public itk::ImageToImageFilter<TInputImageType, TOutputImageType>
27  {
28  public:
29 
33  typedef ImageToImageFilter< TInputImageType, TOutputImageType > Superclass;
34 
35  itkFactorylessNewMacro(Self);
36  itkCloneMacro(Self);
37 
38  void SetImageMask(TMaskImageType * maskimage);
39 
40  itkSetMacro(Sigma,double)
41  itkGetMacro(Sigma,double)
42 
43  private:
44 
45  typename TMaskImageType::Pointer m_ImageMask;
46  double m_Sigma;
47 
48  void GenerateData();
49  void GenerateOutputInformation();
50 
53  };
54 }
55 
56 #ifndef ITK_MANUAL_INSTANTIATION
57 #include "../src/Algorithm/itkHessianMatrixEigenvalueImageFilter.cpp"
58 #endif
59 
60 #endif
HessianMatrixEigenvalueImageFilter< TInputImageType, TOutputImageType > Self
ImageToImageFilter< TInputImageType, TOutputImageType > Superclass