ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkBSplineSmoothingOnUpdateDisplacementFieldTransform.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 __itkBSplineSmoothingOnUpdateDisplacementFieldTransform_h
19 #define __itkBSplineSmoothingOnUpdateDisplacementFieldTransform_h
20 
22 
24 #include "itkPointSet.h"
25 
26 namespace itk
27 {
28 
51 template<class TScalar, unsigned int NDimensions>
53  public DisplacementFieldTransform<TScalar, NDimensions>
54 {
55 public:
61 
64 
66  itkNewMacro( Self );
67 
69  itkStaticConstMacro( Dimension, unsigned int, NDimensions );
70 
72  typedef typename Superclass::ScalarType ScalarType;
73  typedef typename Superclass::DerivativeType DerivativeType;
74  typedef typename DerivativeType::ValueType DerivativeValueType;
75  typedef typename Superclass::DisplacementFieldType DisplacementFieldType;
76  typedef typename Superclass::DisplacementFieldPointer DisplacementFieldPointer;
77  typedef typename Superclass::DisplacementFieldConstPointer DisplacementFieldConstPointer;
78 
81 
86  typedef typename DisplacementFieldType::PixelType DisplacementVectorType;
88  typedef unsigned int SplineOrderType;
94 
105  virtual void UpdateTransformParameters( const DerivativeType & update, ScalarType factor = 1.0 );
106 
110  itkSetMacro( SplineOrder, SplineOrderType );
111 
115  itkGetConstMacro( SplineOrder, SplineOrderType );
116 
124  itkSetMacro( NumberOfControlPointsForTheUpdateField, ArrayType );
125 
133  itkGetConstMacro( NumberOfControlPointsForTheUpdateField, ArrayType );
134 
141  void SetMeshSizeForTheUpdateField( const ArrayType & );
142 
150  itkSetMacro( NumberOfControlPointsForTheTotalField, ArrayType );
151 
159  itkGetConstMacro( NumberOfControlPointsForTheTotalField, ArrayType );
160 
167  void SetMeshSizeForTheTotalField( const ArrayType & );
168 
172  itkBooleanMacro( EnforceStationaryBoundary );
173  itkSetMacro( EnforceStationaryBoundary, bool );
174  itkGetConstMacro( EnforceStationaryBoundary, bool );
176 
177 protected:
180 
181  void PrintSelf( std::ostream& os, Indent indent ) const;
182 
184  virtual typename LightObject::Pointer InternalClone() const;
185 
189  DisplacementFieldPointer BSplineSmoothDisplacementField( const DisplacementFieldType *, const ArrayType & );
190 
191 private:
192  BSplineSmoothingOnUpdateDisplacementFieldTransform( const Self& ); //purposely not implemented
193  void operator=( const Self& ); //purposely not implemented
194 
199 };
200 
201 } // end namespace itk
202 
203 #ifndef ITK_MANUAL_INSTANTIATION
204 # include "itkBSplineSmoothingOnUpdateDisplacementFieldTransform.hxx"
205 #endif
206 
207 #endif // __itkBSplineSmoothingOnUpdateDisplacementFieldTransform_h
208