MCPcopy Create free account
hub / github.com/MITK/MITK / SetInput

Function SetInput

Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.h:93–98  ·  view source on GitHub ↗

* \brief Set the input binary image. * * Overloaded to also connect the input to the internal dilation filter. * * \param[in] input The input binary image. */

Source from the content-addressed store, hash-verified

91 * \param[in] input The input binary image.
92 */
93 void SetInput(const InputImageType *input) override
94 {
95 // processObject is not const-correct so a const_cast is needed here
96 this->ProcessObject::SetNthInput(0, const_cast<InputImageType *>(input));
97 m_DilateImageFilter->SetInput(input);
98 }
99
100 using Superclass::SetInput;
101 /**

Callers 4

SetInputMethod · 0.85
SetInputMethod · 0.85
SetInputMethod · 0.85
DoSetInputMethod · 0.85

Calls 1

SetInputMethod · 0.45

Tested by

no test coverage detected