Regular step gradient descent optimizer configuration
A RegularStepGradientDescent
object describes a regular
step gradient descent optimization configuration that you pass to the function imregister
to solve image registration problems.
You can create a RegularStepGradientDescent
object using the
following methods:
imregconfig
— Returns a
RegularStepGradientDescent
object paired with an
appropriate metric for registering monomodal images
Entering
metric = registration.optimizer.RegularStepGradientDescent;
RegularStepGradientDescent
object with default settingsThe regular step gradient descent optimization adjusts the transformation parameters
so that the optimization follows the gradient of the image similarity metric in the
direction of the extrema. It uses constant length steps along the gradient between
computations until the gradient changes direction. At this point, the step length is
reduced based on the RelaxationFactor
, which halves the step length
by default.