The method Minimum sets each pixel in the output image as the minimum value of all the current image pixel values in the neighborhood of size WindowSize.

The minimum filter is typically applied to an image to remove positive outlier noise.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Minimum(
	int windowSize
)
Public Sub Minimum ( _
	windowSize As Integer _
)
public:
void Minimum(
	int windowSize
)

Parameters

windowSize
Int32
The window size

See Also