Skip to content

Commit

Permalink
DOC: Update itk::N4BiasFieldCorrectionImageFilter::Sharpen definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jhlegarreta committed Dec 13, 2021
1 parent f6f73fe commit 55ea845
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2902,17 +2902,13 @@ \subsection{Empty Lines}
\small
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{cpp}
template <typename TInputImage, typename TMaskImage, typename TOutputImage>
typename
N4BiasFieldCorrectionImageFilter<TInputImage, TMaskImage, TOutputImage>::RealImagePointer
N4BiasFieldCorrectionImageFilter<TInputImage, TMaskImage, TOutputImage>
::SharpenImage(const RealImageType *unsharpenedImage) const
void N4BiasFieldCorrectionImageFilter<TInputImage, TMaskImage, TOutputImage>::SharpenImage(
const RealImageType * unsharpenedImage, RealImageType * sharpenedImage) const
{
const MaskImageType * maskImage = this->GetMaskImage();
const RealImageType * confidenceImage = this->GetConfidenceImage();
#if !defined(ITK_FUTURE_LEGACY_REMOVE)
const auto maskImageBufferRange = MakeImageBufferRange(this->GetMaskImage());
const auto confidenceImageBufferRange = MakeImageBufferRange(this->GetConfidenceImage());
const MaskPixelType maskLabel = this->GetMaskLabel();
const bool useMaskLabel = this->GetUseMaskLabel();
#endif
const bool useMaskLabel = this->GetUseMaskLabel();
// Build the histogram for the uncorrected image. Store copy
// in a vnl_vector to utilize vnl FFT routines. Note that variables
Expand Down

0 comments on commit 55ea845

Please sign in to comment.