go home Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages
itkCorrespondingPointsEuclideanDistancePointMetric.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright UMC Utrecht and contributors
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 __itkCorrespondingPointsEuclideanDistancePointMetric_h
19 #define __itkCorrespondingPointsEuclideanDistancePointMetric_h
20 
22 #include "itkPoint.h"
23 #include "itkPointSet.h"
24 #include "itkImage.h"
25 
26 namespace itk
27 {
28 
38 template< class TFixedPointSet, class TMovingPointSet >
40  public SingleValuedPointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >
41 {
42 public:
43 
47  TFixedPointSet, TMovingPointSet > Superclass;
49  typedef SmartPointer< const Self > ConstPointer;
50 
52  itkNewMacro( Self );
53 
57 
63 
71 
74 
77  typedef typename OutputPointType::CoordRepType CoordRepType;
79 
81 
83  MeasureType GetValue( const TransformParametersType & parameters ) const;
84 
86  void GetDerivative( const TransformParametersType & parameters,
87  DerivativeType & Derivative ) const;
88 
91  MeasureType & Value, DerivativeType & Derivative ) const;
92 
93 protected:
94 
97 
98 private:
99 
100  CorrespondingPointsEuclideanDistancePointMetric( const Self & ); // purposely not implemented
101  void operator=( const Self & ); // purposely not implemented
102 
103 };
104 
105 } // end namespace itk
106 
107 #ifndef ITK_MANUAL_INSTANTIATION
108 #include "itkCorrespondingPointsEuclideanDistancePointMetric.hxx"
109 #endif
110 
111 #endif
itk::CorrespondingPointsEuclideanDistancePointMetric::Superclass
SingleValuedPointSetToPointSetMetric< TFixedPointSet, TMovingPointSet > Superclass
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:47
itkSingleValuedPointSetToPointSetMetric.h
itk::CorrespondingPointsEuclideanDistancePointMetric::Pointer
SmartPointer< Self > Pointer
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:48
itk::SingleValuedPointSetToPointSetMetric::TransformParametersType
TransformType::ParametersType TransformParametersType
Definition: itkSingleValuedPointSetToPointSetMetric.h:102
SmartPointer< Self >
itk::CorrespondingPointsEuclideanDistancePointMetric::TransformJacobianType
Superclass::TransformJacobianType TransformJacobianType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:62
itk::CorrespondingPointsEuclideanDistancePointMetric::DerivativeType
Superclass::DerivativeType DerivativeType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:65
itk::SingleValuedPointSetToPointSetMetric::TransformPointer
TransformType::Pointer TransformPointer
Definition: itkSingleValuedPointSetToPointSetMetric.h:99
itk::CorrespondingPointsEuclideanDistancePointMetric::~CorrespondingPointsEuclideanDistancePointMetric
virtual ~CorrespondingPointsEuclideanDistancePointMetric()
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:96
itk::SingleValuedPointSetToPointSetMetric
Computes similarity between two point sets.
Definition: itkSingleValuedPointSetToPointSetMetric.h:64
itk::SingleValuedPointSetToPointSetMetric::OutputPointType
TransformType::OutputPointType OutputPointType
Definition: itkSingleValuedPointSetToPointSetMetric.h:101
itk::CorrespondingPointsEuclideanDistancePointMetric::GetValueAndDerivative
void GetValueAndDerivative(const TransformParametersType &parameters, MeasureType &Value, DerivativeType &Derivative) const
itk::CorrespondingPointsEuclideanDistancePointMetric::TransformType
Superclass::TransformType TransformType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:56
itk::SingleValuedPointSetToPointSetMetric::PointDataIterator
FixedPointSetType::PointDataContainer::ConstIterator PointDataIterator
Definition: itkSingleValuedPointSetToPointSetMetric.h:87
itk::CorrespondingPointsEuclideanDistancePointMetric::TransformPointer
Superclass::TransformPointer TransformPointer
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:60
itk::CorrespondingPointsEuclideanDistancePointMetric::PointIterator
Superclass::PointIterator PointIterator
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:72
vnl_vector< CoordRepType >
itk::CorrespondingPointsEuclideanDistancePointMetric::VnlVectorType
vnl_vector< CoordRepType > VnlVectorType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:78
itk::CorrespondingPointsEuclideanDistancePointMetric::PointDataIterator
Superclass::PointDataIterator PointDataIterator
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:73
itk::CorrespondingPointsEuclideanDistancePointMetric
Computes the Euclidean distance between a moving point-set and a fixed point-set. Correspondence is n...
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:41
itk::CorrespondingPointsEuclideanDistancePointMetric::NonZeroJacobianIndicesType
Superclass::NonZeroJacobianIndicesType NonZeroJacobianIndicesType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:80
itk::SingleValuedPointSetToPointSetMetric::PointIterator
FixedPointSetType::PointsContainer::ConstIterator PointIterator
Definition: itkSingleValuedPointSetToPointSetMetric.h:86
itk::SingleValuedPointSetToPointSetMetric::MeasureType
Superclass::MeasureType MeasureType
Definition: itkSingleValuedPointSetToPointSetMetric.h:115
itk::SingleValuedPointSetToPointSetMetric::DerivativeValueType
DerivativeType::ValueType DerivativeValueType
Definition: itkSingleValuedPointSetToPointSetMetric.h:117
itk::SingleValuedPointSetToPointSetMetric::MovingPointSetType
TMovingPointSet MovingPointSetType
Definition: itkSingleValuedPointSetToPointSetMetric.h:83
itk::CorrespondingPointsEuclideanDistancePointMetric::GetValue
MeasureType GetValue(const TransformParametersType &parameters) const
itk::CorrespondingPointsEuclideanDistancePointMetric::CoordRepType
OutputPointType::CoordRepType CoordRepType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:77
itk::SingleValuedPointSetToPointSetMetric::FixedPointSetConstPointer
FixedPointSetType::ConstPointer FixedPointSetConstPointer
Definition: itkSingleValuedPointSetToPointSetMetric.h:82
itk::SingleValuedPointSetToPointSetMetric::MovingPointSetConstPointer
MovingPointSetType::ConstPointer MovingPointSetConstPointer
Definition: itkSingleValuedPointSetToPointSetMetric.h:85
itk::SingleValuedPointSetToPointSetMetric::InputPointType
TransformType::InputPointType InputPointType
Definition: itkSingleValuedPointSetToPointSetMetric.h:100
itk::SingleValuedPointSetToPointSetMetric::NonZeroJacobianIndicesType
TransformType::NonZeroJacobianIndicesType NonZeroJacobianIndicesType
Definition: itkSingleValuedPointSetToPointSetMetric.h:121
itk::CorrespondingPointsEuclideanDistancePointMetric::Self
CorrespondingPointsEuclideanDistancePointMetric Self
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:45
itk::CorrespondingPointsEuclideanDistancePointMetric::MovingPointSetConstPointer
Superclass::MovingPointSetConstPointer MovingPointSetConstPointer
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:70
itk::CorrespondingPointsEuclideanDistancePointMetric::InputPointType
Superclass::InputPointType InputPointType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:75
itk::CorrespondingPointsEuclideanDistancePointMetric::MovingPointSetType
Superclass::MovingPointSetType MovingPointSetType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:68
itk::CorrespondingPointsEuclideanDistancePointMetric::TransformParametersType
Superclass::TransformParametersType TransformParametersType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:61
itk::SingleValuedPointSetToPointSetMetric::DerivativeType
Superclass::DerivativeType DerivativeType
Definition: itkSingleValuedPointSetToPointSetMetric.h:116
itk
Definition: itkAdvancedImageToImageMetric.h:40
itk::CorrespondingPointsEuclideanDistancePointMetric::CorrespondingPointsEuclideanDistancePointMetric
CorrespondingPointsEuclideanDistancePointMetric(const Self &)
itk::CorrespondingPointsEuclideanDistancePointMetric::operator=
void operator=(const Self &)
itk::CorrespondingPointsEuclideanDistancePointMetric::MeasureType
Superclass::MeasureType MeasureType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:64
itk::CorrespondingPointsEuclideanDistancePointMetric::FixedPointSetType
Superclass::FixedPointSetType FixedPointSetType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:67
itk::CorrespondingPointsEuclideanDistancePointMetric::FixedPointSetConstPointer
Superclass::FixedPointSetConstPointer FixedPointSetConstPointer
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:69
itk::CorrespondingPointsEuclideanDistancePointMetric::ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:49
itk::SingleValuedPointSetToPointSetMetric::FixedPointSetType
TFixedPointSet FixedPointSetType
Definition: itkSingleValuedPointSetToPointSetMetric.h:77
itk::CorrespondingPointsEuclideanDistancePointMetric::DerivativeValueType
Superclass::DerivativeValueType DerivativeValueType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:66
itk::SingleValuedPointSetToPointSetMetric::TransformType
AdvancedTransform< CoordinateRepresentationType, itkGetStaticConstMacro(FixedPointSetDimension), itkGetStaticConstMacro(MovingPointSetDimension) > TransformType
Definition: itkSingleValuedPointSetToPointSetMetric.h:98
itk::SingleValuedPointSetToPointSetMetric::TransformJacobianType
TransformType::JacobianType TransformJacobianType
Definition: itkSingleValuedPointSetToPointSetMetric.h:103
itk::CorrespondingPointsEuclideanDistancePointMetric::OutputPointType
Superclass::OutputPointType OutputPointType
Definition: itkCorrespondingPointsEuclideanDistancePointMetric.h:76
itk::CorrespondingPointsEuclideanDistancePointMetric::GetDerivative
void GetDerivative(const TransformParametersType &parameters, DerivativeType &Derivative) const
itk::CorrespondingPointsEuclideanDistancePointMetric::CorrespondingPointsEuclideanDistancePointMetric
CorrespondingPointsEuclideanDistancePointMetric()


Generated on OURCE_DATE_EPOCH for elastix by doxygen 1.8.18 elastix logo