Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkMRNormLinearStatisticBasedFilter.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 MRNORMLINEARSTATISTICBASEDFILTER_H
18 #define MRNORMLINEARSTATISTICBASEDFILTER_H
19 
20 #include "mitkCommon.h"
22 #include "mitkImageToImageFilter.h"
23 #include "mitkImageTimeSelector.h"
24 
25 #include "itkImage.h"
26 
27 namespace mitk {
28  //##Documentation
29  //## @brief
30  //## @ingroup Process
32  {
33  public:
35 
36  itkFactorylessNewMacro(Self);
37  itkCloneMacro(Self);
38 
39  void SetMask( const mitk::Image* mask );
40 
41  const mitk::Image* GetMask() const;
42 
44  {
47  MEDIAN
48  };
49 
50  itkGetConstMacro(CenterMode, NormalizationBase);
51  itkSetMacro(CenterMode, NormalizationBase);
52 
53  protected:
55 
57 
58  virtual void GenerateInputRequestedRegion() override;
59 
60  virtual void GenerateOutputInformation() override;
61 
62  virtual void GenerateData() override;
63 
64  template < typename TPixel, unsigned int VImageDimension >
65  void InternalComputeMask(itk::Image<TPixel, VImageDimension>* itkImage);
66 
68  };
69 } // namespace mitk
70 
71 #endif /* MRNORMLINEARSTATISTICBASEDFILTER_H */
Superclass of all classes generating some kind of mitk::BaseData.
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
Image class for storing images.
Definition: mitkImage.h:76
Superclass of all classes having one or more Images as input and generating Images as output...
#define MITKCLMRUTILITIES_EXPORT