1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkStatisticalShapePointPenalty_h
#define itkStatisticalShapePointPenalty_h
#include "itkSingleValuedPointSetToPointSetMetric.h"
#include "itkPoint.h"
#include "itkPointSet.h"
#include "itkImage.h"
#include "itkArray.h"
#include <itkVariableSizeMatrix.h>
#include <vnl/vnl_matrix.h>
#include <vnl/vnl_math.h>
#include <vnl/vnl_vector.h>
#include <vnl/algo/vnl_real_eigensystem.h>
#include <vnl/algo/vnl_symmetric_eigensystem.h>
//#include <vnl/algo/vnl_svd.h>
#include <vnl/algo/vnl_svd_economy.h>
#include <string>
namespace itk
{
/** \class StatisticalShapePointPenalty
* \brief Computes the Mahalanobis distance between the transformed shape and a mean shape.
* A model mean and covariance are required.
*
* \author F.F. Berendsen, Image Sciences Institute, UMC Utrecht, The Netherlands
* \note This work was funded by the projects Care4Me and Mediate.
* \note If you use the StatisticalShapePenalty anywhere we would appreciate if you cite the following article:\n
* F.F. Berendsen et al., Free-form image registration regularized by a statistical shape model:
* application to organ segmentation in cervical MR, Comput. Vis. Image Understand. (2013),
* http://dx.doi.org/10.1016/j.cviu.2012.12.006
*
* \ingroup RegistrationMetrics
*/
template <class TFixedPointSet, class TMovingPointSet>
class ITK_TEMPLATE_EXPORT StatisticalShapePointPenalty
: public SingleValuedPointSetToPointSetMetric<TFixedPointSet, TMovingPointSet>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(StatisticalShapePointPenalty);
/** Standard class typedefs. */
using Self = StatisticalShapePointPenalty;
using Superclass = SingleValuedPointSetToPointSetMetric<TFixedPointSet, TMovingPointSet>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(StatisticalShapePointPenalty, SingleValuedPointSetToPointSetMetric);
/** Types transferred from the base class */
using typename Superclass::TransformType;
using typename Superclass::TransformPointer;
using typename Superclass::TransformParametersType;
using typename Superclass::TransformJacobianType;
using typename Superclass::NonZeroJacobianIndicesType;
using typename Superclass::MeasureType;
using typename Superclass::DerivativeType;
using typename Superclass::DerivativeValueType;
using typename Superclass::FixedPointSetType;
using typename Superclass::MovingPointSetType;
using typename Superclass::FixedPointSetConstPointer;
using typename Superclass::MovingPointSetConstPointer;
using typename Superclass::PointIterator;
using typename Superclass::PointDataIterator;
using typename Superclass::InputPointType;
using typename Superclass::OutputPointType;
using CoordRepType = typename OutputPointType::CoordRepType;
using VnlVectorType = vnl_vector<CoordRepType>;
using VnlMatrixType = vnl_matrix<CoordRepType>;
// typedef itk::Array<VnlVectorType *> ProposalDerivativeType;
using ProposalDerivativeType = typename std::vector<VnlVectorType *>;
// typedef typename vnl_vector<VnlVectorType *> ProposalDerivativeType; //Cannot be linked
using PCACovarianceType = vnl_svd_economy<CoordRepType>;
/** Initialization. */
void
Initialize() override;
/** Get the value for single valued optimizers. */
MeasureType
GetValue(const TransformParametersType & parameters) const override;
/** Get the derivatives of the match measure. */
void
GetDerivative(const TransformParametersType & parameters, DerivativeType & Derivative) const override;
/** Get value and derivatives for multiple valued optimizers. */
void
GetValueAndDerivative(const TransformParametersType & parameters,
MeasureType & Value,
DerivativeType & Derivative) const override;
/** Set/Get the shrinkageIntensity parameter. */
itkSetClampMacro(ShrinkageIntensity, MeasureType, 0.0, 1.0);
itkGetConstMacro(ShrinkageIntensity, MeasureType);
itkSetMacro(ShrinkageIntensityNeedsUpdate, bool);
itkBooleanMacro(ShrinkageIntensityNeedsUpdate);
/** Set/Get the BaseVariance parameter. */
itkSetClampMacro(BaseVariance, MeasureType, -1.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(BaseVariance, MeasureType);
itkSetMacro(BaseVarianceNeedsUpdate, bool);
itkBooleanMacro(BaseVarianceNeedsUpdate);
itkSetClampMacro(CentroidXVariance, MeasureType, -1.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(CentroidXVariance, MeasureType);
itkSetClampMacro(CentroidYVariance, MeasureType, -1.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(CentroidYVariance, MeasureType);
itkSetClampMacro(CentroidZVariance, MeasureType, -1.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(CentroidZVariance, MeasureType);
itkSetClampMacro(SizeVariance, MeasureType, -1.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(SizeVariance, MeasureType);
itkSetMacro(VariancesNeedsUpdate, bool);
itkBooleanMacro(VariancesNeedsUpdate);
itkSetClampMacro(CutOffValue, MeasureType, 0.0, NumericTraits<MeasureType>::max());
itkGetConstMacro(CutOffValue, MeasureType);
itkSetClampMacro(CutOffSharpness,
MeasureType,
NumericTraits<MeasureType>::NonpositiveMin(),
NumericTraits<MeasureType>::max());
itkGetConstMacro(CutOffSharpness, MeasureType);
itkSetMacro(ShapeModelCalculation, int);
itkGetConstReferenceMacro(ShapeModelCalculation, int);
itkSetMacro(NormalizedShapeModel, bool);
itkGetConstReferenceMacro(NormalizedShapeModel, bool);
itkBooleanMacro(NormalizedShapeModel);
itkSetConstObjectMacro(EigenVectors, vnl_matrix<double>);
itkSetConstObjectMacro(EigenValues, vnl_vector<double>);
itkSetConstObjectMacro(MeanVector, vnl_vector<double>);
itkSetConstObjectMacro(CovarianceMatrix, vnl_matrix<double>);
protected:
StatisticalShapePointPenalty();
~StatisticalShapePointPenalty() override;
/** PrintSelf. */
void
PrintSelf(std::ostream & os, Indent indent) const override;
private:
void
FillProposalVector(const OutputPointType & fixedPoint, const unsigned int vertexindex) const;
void
FillProposalDerivative(const OutputPointType & fixedPoint, const unsigned int vertexindex) const;
void
UpdateCentroidAndAlignProposalVector(const unsigned int shapeLength) const;
void
UpdateCentroidAndAlignProposalDerivative(const unsigned int shapeLength) const;
void
UpdateL2(const unsigned int shapeLength) const;
void
NormalizeProposalVector(const unsigned int shapeLength) const;
void
UpdateL2AndNormalizeProposalDerivative(const unsigned int shapeLength) const;
void
CalculateValue(MeasureType & value,
VnlVectorType & differenceVector,
VnlVectorType & centerrotated,
VnlVectorType & eigrot) const;
void
CalculateDerivative(DerivativeType & derivative,
const MeasureType & value,
const VnlVectorType & differenceVector,
const VnlVectorType & eigrot,
const unsigned int shapeLength) const;
void
CalculateCutOffValue(MeasureType & value) const;
void
CalculateCutOffDerivative(typename DerivativeType::element_type & derivativeElement, const MeasureType & value) const;
const VnlVectorType * m_MeanVector{};
const VnlMatrixType * m_CovarianceMatrix{};
const VnlMatrixType * m_EigenVectors{};
const VnlVectorType * m_EigenValues{};
VnlMatrixType * m_InverseCovarianceMatrix{};
double m_CentroidXVariance{};
double m_CentroidXStd{};
double m_CentroidYVariance{};
double m_CentroidYStd{};
double m_CentroidZVariance{};
double m_CentroidZStd{};
double m_SizeVariance{};
double m_SizeStd{};
bool m_ShrinkageIntensityNeedsUpdate{};
bool m_BaseVarianceNeedsUpdate{};
bool m_VariancesNeedsUpdate{};
VnlVectorType * m_EigenValuesRegularized{};
mutable ProposalDerivativeType * m_ProposalDerivative{};
unsigned int m_ProposalLength{};
bool m_NormalizedShapeModel{};
int m_ShapeModelCalculation{};
double m_ShrinkageIntensity{};
double m_BaseVariance{};
double m_BaseStd{};
mutable VnlVectorType m_ProposalVector{};
mutable VnlVectorType m_MeanValues{};
double m_CutOffValue{};
double m_CutOffSharpness{};
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkStatisticalShapePointPenalty.hxx"
#endif
#endif
|