diff --git a/SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex b/SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex index 984e4d48..f16e0431 100644 --- a/SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex +++ b/SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex @@ -2241,14 +2241,9 @@ \subsection{White Spaces} \begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{cpp} template SpecializedFilter::SpecializedFilter() - : m_ForegroundValue(NumericTraits::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