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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/*=========================================================================
*
* 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 elxConjugateGradientFRPR_hxx
#define elxConjugateGradientFRPR_hxx
#include "elxConjugateGradientFRPR.h"
#include <cmath>
#include <iomanip>
#include <string>
#include <vnl/vnl_math.h>
namespace elastix
{
/**
* ********************* Constructor ****************************
*/
template <class TElastix>
ConjugateGradientFRPR<TElastix>::ConjugateGradientFRPR()
{
this->m_LineBracketing = false;
this->m_LineOptimizing = false;
this->m_CurrentStepLength = 0.0;
this->m_CurrentSearchDirectionMagnitude = 0.0;
this->m_CurrentDerivativeMagnitude = 0.0;
} // end Constructor
/**
* ***************** DeterminePhase *****************************
*
* This method gives only sensible output if it is called
* during iterating
*/
template <class TElastix>
const char *
ConjugateGradientFRPR<TElastix>::DeterminePhase() const
{
if (this->GetLineBracketing())
{
return "LineBracketing";
}
if (this->GetLineOptimizing())
{
return "LineOptimizing";
}
return "Main";
} // end DeterminePhase
/**
* ***************** BeforeRegistration ***********************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::BeforeRegistration()
{
/** Add target cells to IterationInfo.*/
this->AddTargetCellToIterationInfo("1a:SrchDirNr");
this->AddTargetCellToIterationInfo("1b:LineItNr");
this->AddTargetCellToIterationInfo("2:Metric");
this->AddTargetCellToIterationInfo("3:StepLength");
this->AddTargetCellToIterationInfo("4a:||Gradient||");
this->AddTargetCellToIterationInfo("4b:||SearchDir||");
this->AddTargetCellToIterationInfo("5:Phase");
/** Format some fields as floats */
this->GetIterationInfoAt("2:Metric") << std::showpoint << std::fixed;
this->GetIterationInfoAt("3:StepLength") << std::showpoint << std::fixed;
this->GetIterationInfoAt("4a:||Gradient||") << std::showpoint << std::fixed;
this->GetIterationInfoAt("4b:||SearchDir||") << std::showpoint << std::fixed;
/** \todo: call the correct functions */
} // end BeforeRegistration
/**
* ***************** BeforeEachResolution ***********************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::BeforeEachResolution()
{
/** Get the current resolution level.*/
unsigned int level = static_cast<unsigned int>(this->m_Registration->GetAsITKBaseType()->GetCurrentLevel());
/** Set the maximumNumberOfIterations.*/
unsigned int maximumNumberOfIterations = 100;
this->m_Configuration->ReadParameter(
maximumNumberOfIterations, "MaximumNumberOfIterations", this->GetComponentLabel(), level, 0);
this->SetMaximumIteration(maximumNumberOfIterations);
/** Set the maximumNumberOfIterations used for a line search.*/
unsigned int maximumNumberOfLineSearchIterations = 20;
this->m_Configuration->ReadParameter(
maximumNumberOfLineSearchIterations, "MaximumNumberOfLineSearchIterations", this->GetComponentLabel(), level, 0);
this->SetMaximumLineIteration(maximumNumberOfLineSearchIterations);
/** Set the length of the initial step, used to bracket the minimum. */
double stepLength = 1.0;
this->m_Configuration->ReadParameter(stepLength, "StepLength", this->GetComponentLabel(), level, 0);
this->SetStepLength(stepLength);
/** Set the ValueTolerance; convergence is declared if:
* 2.0 * abs(f2 - f1) <= ValueTolerance * (abs(f2) + std::abs(f1))
*/
double valueTolerance = 0.00001;
this->m_Configuration->ReadParameter(valueTolerance, "ValueTolerance", this->GetComponentLabel(), level, 0);
this->SetValueTolerance(valueTolerance);
/** Set the LineSearchStepTolerance; convergence of the line search is declared if:
*
* abs(x-xm) <= tol * abs(x) - (b-a)/2
* where:
* x = current mininum of the gain
* a, b = current brackets around the minimum
* xm = (a+b)/2
*/
double stepTolerance = 0.00001;
this->m_Configuration->ReadParameter(stepTolerance, "LineSearchStepTolerance", this->GetComponentLabel(), level, 0);
this->SetStepTolerance(stepTolerance);
} // end BeforeEachResolution
/**
* ***************** AfterEachIteration *************************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::AfterEachIteration()
{
/** Print some information. */
this->GetIterationInfoAt("1a:SrchDirNr") << this->GetCurrentIteration();
this->GetIterationInfoAt("1b:LineItNr") << this->GetCurrentLineIteration();
this->GetIterationInfoAt("2:Metric") << this->GetValue();
this->GetIterationInfoAt("4b:||SearchDir||") << this->GetCurrentSearchDirectionMagnitude();
this->GetIterationInfoAt("5:Phase") << this->DeterminePhase();
/** If main iteration (NewDirection) */
if ((!(this->GetLineBracketing())) && (!(this->GetLineOptimizing())))
{
this->GetIterationInfoAt("3:StepLength") << this->GetCurrentStepLength();
this->GetIterationInfoAt("4a:||Gradient||") << this->GetCurrentDerivativeMagnitude();
}
else
{
if (this->GetLineBracketing())
{
this->GetIterationInfoAt("3:StepLength") << this->GetCurrentStepLength();
}
else
{
/** No step length known now */
this->GetIterationInfoAt("3:StepLength") << "---";
}
this->GetIterationInfoAt("4a:||Gradient||") << "---";
} // end if main iteration
} // end AfterEachIteration
/**
* ***************** AfterEachResolution *************************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::AfterEachResolution()
{
/**
* enum StopConditionType { MaximumNumberOfIterations, MetricError }
*/
/** \todo StopConditions are not yet implemented in the FRPROptimizer;
* Uncomment the following code when they are implemented.
std::string stopcondition;
switch( this->GetStopCondition() )
{
case MaximumNumberOfIterations :
stopcondition = "Maximum number of iterations has been reached";
break;
case MetricError :
stopcondition = "Error in metric";
break;
default:
stopcondition = "Unknown";
break;
}
*/
/** Print the stopping condition */
// elxout << "Stopping condition: " << stopcondition << "." << std::endl;
} // end AfterEachResolution
/**
* ******************* AfterRegistration ************************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::AfterRegistration()
{
/** Print the best metric value */
double bestValue = this->GetValue();
log::info(std::ostringstream{} << '\n' << "Final metric value = " << bestValue);
} // end AfterRegistration
/**
* ******************* SetInitialPosition ***********************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::SetInitialPosition(const ParametersType & param)
{
/** Override the implementation in itkOptimizer.h, to
* ensure that the scales array and the parameters
* array have the same size.
*/
/** Call the Superclass' implementation. */
this->Superclass1::SetInitialPosition(param);
/** Set the scales array to the same size if the size has been changed */
ScalesType scales = this->GetScales();
unsigned int paramsize = param.Size();
if ((scales.Size()) != paramsize)
{
ScalesType newscales(paramsize, 1.0);
this->SetScales(newscales);
}
/** \todo to optimizerbase? */
} // end SetInitialPosition
/**
* *************** GetValueAndDerivative ***********************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::GetValueAndDerivative(ParametersType & p, double * val, ParametersType * xi)
{
/** This implementation forces the metric to select new samples
* (if the user asked for this), calls the Superclass'
* implementation and caches the computed derivative. */
/** Select new spatial samples for the computation of the metric */
if (this->GetNewSamplesEveryIteration())
{
this->SelectNewSamples();
}
this->Superclass1::GetValueAndDerivative(p, val, xi);
this->m_CurrentDerivativeMagnitude = xi->magnitude();
} // end GetValueAndDerivative
/**
* *************** LineBracket ****************************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::LineBracket(double * ax,
double * bx,
double * cx,
double * fa,
double * fb,
double * fc,
ParametersType & tempCoord)
{
/** This implementation sets the LineBracketing flag to 'true', calls the
* superclass' implementation, remembers the current step length (bx), invokes
* an iteration event, and sets the LineBracketing flag to 'false' */
this->SetLineBracketing(true);
this->Superclass1::LineBracket(ax, bx, cx, fa, fb, fc, tempCoord);
this->m_CurrentStepLength = *bx;
this->InvokeEvent(itk::IterationEvent());
this->SetLineBracketing(false);
} // end LineBracket
/**
* *************** BracketedLineOptimize *********************
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::BracketedLineOptimize(double ax,
double bx,
double cx,
double fa,
double fb,
double fc,
double * extX,
double * extVal,
ParametersType & tempCoord)
{
/** This implementation sets the LineOptimizing flag to 'true', calls the
* the superclass's implementation, remembers the resulting step length,
* and sets the LineOptimizing flag to 'false' again. */
this->SetLineOptimizing(true);
this->Superclass1::BracketedLineOptimize(ax, bx, cx, fa, fb, fc, extX, extVal, tempCoord);
this->m_CurrentStepLength = *extX;
this->SetLineOptimizing(false);
} // end BracketedLineOptimize
/**
* ************************** LineOptimize ********************************
* store the line search direction's (xi) magnitude and call the superclass'
* implementation.
*/
template <class TElastix>
void
ConjugateGradientFRPR<TElastix>::LineOptimize(ParametersType * p,
ParametersType & xi,
double * val,
ParametersType & tempCoord)
{
this->m_CurrentSearchDirectionMagnitude = xi.magnitude();
this->Superclass1::LineOptimize(p, xi, val, tempCoord);
} // end LineOptimize
} // end namespace elastix
#endif // end #ifndef elxConjugateGradientFRPR_hxx
|