ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkSymmetricForcesDemonsRegistrationFilter.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 itkSymmetricForcesDemonsRegistrationFilter_h
19 #define itkSymmetricForcesDemonsRegistrationFilter_h
20 
23 
24 namespace itk
25 {
69 template< typename TFixedImage, typename TMovingImage, typename TDisplacementField >
70 class ITK_TEMPLATE_EXPORT SymmetricForcesDemonsRegistrationFilter:
71  public PDEDeformableRegistrationFilter< TFixedImage, TMovingImage,
72  TDisplacementField >
73 {
74 public:
80 
82  itkNewMacro(Self);
83 
87 
89  typedef typename Superclass::FixedImageType FixedImageType;
90  typedef typename Superclass::FixedImagePointer FixedImagePointer;
91 
93  typedef typename Superclass::MovingImageType MovingImageType;
94  typedef typename Superclass::MovingImagePointer MovingImagePointer;
95 
97  typedef typename Superclass::DisplacementFieldType
99  typedef typename Superclass::DisplacementFieldPointer
101 
103  typedef typename Superclass::FiniteDifferenceFunctionType
105 
107  typedef typename FiniteDifferenceFunctionType::TimeStepType TimeStepType;
108 
112 
117  virtual double GetMetric() const;
118 
119  virtual const double & GetRMSChange() const ITK_OVERRIDE;
120 
125  virtual void SetIntensityDifferenceThreshold(double);
126 
127  virtual double GetIntensityDifferenceThreshold() const;
128 
129 protected:
131  ~SymmetricForcesDemonsRegistrationFilter() ITK_OVERRIDE {}
132  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
133 
135  virtual void InitializeIteration() ITK_OVERRIDE;
136 
138  virtual void ApplyUpdate(const TimeStepType& dt) ITK_OVERRIDE;
139 
140 private:
141  ITK_DISALLOW_COPY_AND_ASSIGN(SymmetricForcesDemonsRegistrationFilter);
142 };
143 } // end namespace itk
144 
145 #ifndef ITK_MANUAL_INSTANTIATION
146 #include "itkSymmetricForcesDemonsRegistrationFilter.hxx"
147 #endif
148 
149 #endif
Light weight base class for most itk classes.
SymmetricForcesDemonsRegistrationFunction< FixedImageType, MovingImageType, DisplacementFieldType > DemonsRegistrationFunctionType
PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDisplacementField > Superclass
Deformably register two images using a PDE algorithm.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Deformably register two images using the demons algorithm.