Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,32 +102,6 @@ class ITK_TEMPLATE_EXPORT GradientDescentOptimizerBasev4Template
/** Get stop condition enum */
itkGetConstReferenceMacro(StopCondition, StopConditionObjectToObjectOptimizerEnum);

/** Set the number of iterations. */
void
SetNumberOfIterations(const SizeValueType numberOfIterations) override
{
itkDebugMacro("setting NumberOfIterations to " << numberOfIterations);
if (this->m_NumberOfIterations != numberOfIterations)
{
this->m_NumberOfIterations = numberOfIterations;
this->Modified();
}
}

/** Get the number of iterations. */
SizeValueType
GetNumberOfIterations() const override
{
return this->m_NumberOfIterations;
}

/** Get the current iteration number. */
SizeValueType
GetCurrentIteration() const override
{
return this->m_CurrentIteration;
}

/** Start and run the optimization */
void
StartOptimization(bool doOnlyInitialization = false) override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,6 @@ class TransformParametersAdaptor
}
}

/** Get the fixed parameters */
const FixedParametersType &
GetRequiredFixedParameters() const override
{
return this->m_RequiredFixedParameters;
}

/** Initialize the transform using the specified fixed parameters */
void
AdaptTransformParameters() override{};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -525,13 +525,6 @@ class ITK_TEMPLATE_EXPORT ImageToImageMetricv4
/** Get Moving Gradient Image. */
itkGetModifiableObjectMacro(MovingImageGradientImage, MovingImageGradientImageType);

/** Get number of valid points from most recent update */
SizeValueType
GetNumberOfValidPoints() const override
{
return this->m_NumberOfValidPoints;
}

/** Get the number of points in the domain used to evaluate
* the metric. This will differ depending on whether a sampled
* point set or dense sampling is used, and will be greater than
Expand Down