The method Closing performs a dilation (Maximum filter with WindowSize paramter) followed by an erosion (Minimum filter with WindowSize parameter).

The closing filter operation will reduce small negative oriented regions and negative noise regions.

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

Syntax

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

Parameters

windowSize
Int32
The window size

See Also