Skip to content
Merged
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 @@ -201,10 +201,6 @@ class ITK_TEMPLATE_EXPORT HistogramThresholdImageFilter : public ImageToImageFil
void
GenerateData() override;

/** Set up the histogram generator. */
void
SetUpHistogramGenerator(HistogramGeneratorPointer histogramGenerator);

void
VerifyPreconditions() ITKv5_CONST override
{
Expand All @@ -216,6 +212,10 @@ class ITK_TEMPLATE_EXPORT HistogramThresholdImageFilter : public ImageToImageFil
}

private:
/** Set up the histogram generator. */
void
SetUpHistogramGenerator(HistogramGeneratorPointer histogramGenerator);

OutputPixelType m_InsideValue;
OutputPixelType m_OutsideValue;
InputPixelType m_Threshold;
Expand Down