ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScaleLogarithmicTransform.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkScaleLogarithmicTransform_h
19#define itkScaleLogarithmicTransform_h
20
21#include "itkScaleTransform.h"
22
23namespace itk
24{
34template <typename TParametersValueType = float, unsigned int VDimension = 3>
35class ITK_TEMPLATE_EXPORT ScaleLogarithmicTransform : public ScaleTransform<TParametersValueType, VDimension>
36{
37public:
38 ITK_DISALLOW_COPY_AND_MOVE(ScaleLogarithmicTransform);
39
45
47 itkNewMacro(Self);
48
50 itkOverrideGetNameOfClassMacro(ScaleLogarithmicTransform);
51
53
56 GetInverseTransform() const override;
57
59 static constexpr unsigned int SpaceDimension = VDimension;
60 static constexpr unsigned int ParametersDimension = VDimension;
61
63 using typename Superclass::ScalarType;
64
66 using typename Superclass::ParametersType;
70
72 using typename Superclass::JacobianType;
75
77 using typename Superclass::ScaleType;
79
81 using typename Superclass::InputVectorType;
82 using typename Superclass::OutputVectorType;
83
87
89 using typename Superclass::InputVnlVectorType;
91
93 using typename Superclass::InputPointType;
94 using typename Superclass::OutputPointType;
95
99 void
100 SetParameters(const ParametersType & parameters) override;
101
107 const ParametersType &
108 GetParameters() const override;
109
112 void
114
115protected:
118
120 ~ScaleLogarithmicTransform() override = default;
121
123 void
124 PrintSelf(std::ostream & os, Indent indent) const override;
125}; // class
126 // ScaleLogarithmicTransform
127} // namespace itk
128
129#ifndef ITK_MANUAL_INSTANTIATION
130# include "itkScaleLogarithmicTransform.hxx"
131#endif
132
133#endif /* itkScaleLogarithmicTransform_h */
Control indentation during Print() invocation.
Definition itkIndent.h:51
typename FixedParametersType::ValueType FixedParametersValueType
InverseTransformBasePointer GetInverseTransform() const override
void SetParameters(const ParametersType &parameters) override
typename ScaleType::ValueType ScalesValueType
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
static constexpr unsigned int ParametersDimension
~ScaleLogarithmicTransform() override=default
static constexpr unsigned int SpaceDimension
typename ParametersType::ValueType ParametersValueType
const ParametersType & GetParameters() const override
void ComputeJacobianWithRespectToParameters(const InputPointType &p, JacobianType &jacobian) const override
void PrintSelf(std::ostream &os, Indent indent) const override
ScaleTransform< TParametersValueType, VDimension > Superclass
Point< TParametersValueType, VDimension > InputPointType
Point< TParametersValueType, VDimension > InputPointType
vnl_vector_fixed< TParametersValueType, VDimension > InputVnlVectorType
vnl_matrix_fixed< ParametersValueType, VInputDimension, VOutputDimension > InverseJacobianPositionType
CovariantVector< TParametersValueType, VDimension > InputCovariantVectorType
FixedArray< TParametersValueType, VDimension > ScaleType
typename InverseTransformBaseType::Pointer InverseTransformBasePointer
vnl_vector_fixed< TParametersValueType, VDimension > OutputVnlVectorType
Vector< TParametersValueType, VDimension > OutputVectorType
vnl_matrix_fixed< ParametersValueType, VOutputDimension, VInputDimension > JacobianPositionType
Vector< TParametersValueType, VDimension > InputVectorType
Point< TParametersValueType, VDimension > OutputPointType
CovariantVector< TParametersValueType, VDimension > OutputCovariantVectorType
Implements transparent reference counting.
OptimizerParameters< ParametersValueType > ParametersType
OptimizerParameters< FixedParametersValueType > FixedParametersType
OptimizerParameters< ParametersValueType > ParametersType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....