The method Maximum sets each pixel in the output image as the maximum value of all the current image pixel values in the neighborhood of size windowSize.

The maximum filter is typically applied to an image to remove negative outlier noise.

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

Syntax

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

Parameters

windowSize
Int32
The window size

See Also