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
4 changes: 3 additions & 1 deletion Modules/Core/Common/include/itkGaussianOperator.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@ GaussianOperator<TPixel, VDimension, TAllocator>::GenerateCoefficients() -> Coef
{
break; // failsafe
}
/*
// TODO: See https://github.com/InsightSoftwareConsortium/ITK/issues/3430
if (coeff.size() > m_MaximumKernelWidth)
{
itkDebugMacro(<< "Kernel size has exceeded the specified maximum width of " << m_MaximumKernelWidth
<< " and has been truncated to " << coeff.size()
<< " elements. You can raise the maximum width using the SetMaximumKernelWidth method.");
break;
}
}*/
}
// Normalize the coefficients so that their sum is one.
for (it = coeff.begin(); it < coeff.end(); ++it)
Expand Down