RegularStepGradientDescent
Regular step gradient descent optimizer configuration
Description
A RegularStepGradientDescent
object describes a regular
step gradient descent optimization configuration that you pass to the function imregister
to solve image registration problems.
Creation
You can create a RegularStepGradientDescent
object using the
following methods:
imregconfig
— Returns aRegularStepGradientDescent
object paired with an appropriate metric for registering monomodal imagesEntering
on the command line creates ametric = registration.optimizer.RegularStepGradientDescent;
RegularStepGradientDescent
object with default settings
Properties
Examples
Algorithms
The 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.