ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.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 itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h
19 #define itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h
20 
22 
23 namespace itk
24 {
32 template<typename TTransform>
35 {
36 public:
37 
43 
45  itkNewMacro( Self );
46 
50 
51  typedef TTransform TransformType;
52  typedef typename TransformType::ScalarType ScalarType;
53 
58  itkGetConstReferenceMacro( GaussianSmoothingVarianceForTheConstantVelocityField, ScalarType );
60 
65  itkGetConstReferenceMacro( GaussianSmoothingVarianceForTheUpdateField, ScalarType );
67 
68  virtual void AdaptTransformParameters() ITK_OVERRIDE;
69 
70 protected:
72  ~GaussianExponentialDiffeomorphicTransformParametersAdaptor();
73 
74  void PrintSelf( std::ostream & os, Indent indent ) const ITK_OVERRIDE;
75 
76 private:
77  GaussianExponentialDiffeomorphicTransformParametersAdaptor( const Self & ); //purposely not implemented
78  void operator=( const Self & ); //purposely not implemented
79 
84 
85 }; //class GaussianExponentialDiffeomorphicTransformParametersAdaptor
86 } // namespace itk
87 
88 #ifndef ITK_MANUAL_INSTANTIATION
89 #include "itkGaussianExponentialDiffeomorphicTransformParametersAdaptor.hxx"
90 #endif
91 
92 #endif /* itkGaussianExponentialDiffeomorphicTransformParametersAdaptor_h */
Light weight base class for most itk classes.
virtual void SetGaussianSmoothingVarianceForTheConstantVelocityField(ScalarType)
ConstantVelocityFieldTransformParametersAdaptor is a helper class intended to definition.
unsigned long ModifiedTimeType
Definition: itkIntTypes.h:164
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:49