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
9 changes: 2 additions & 7 deletions SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2241,14 +2241,9 @@ \subsection{White Spaces}
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{cpp}
template <typename TInputImage, typename TOutputImage>
SpecializedFilter<TInputImage, TOutputImage>::SpecializedFilter()
: m_ForegroundValue(NumericTraits<InputImagePixelType>::max())
, m_BackgroundValue{}
, m_NumPixelComponents(0)
, m_NoiseSigmaIsSet(false)
, m_SearchSpaceList(ListAdaptorType::New())
{
// By default, turn off automatic kernel bandwidth sigma estimation
this->KernelBandwidthEstimationOff();
// The filter requires two inputs
this->SetNumberOfRequiredInputs(2);
}
\end{minted}
\normalsize
Expand Down