Finding median of sizexsize neighborhood

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Image<TColor, TDepth> SmoothMedian(
	int size
)
Visual Basic (Declaration)
Public Function SmoothMedian ( _
	size As Integer _
) As Image(Of TColor, TDepth)
Visual C++
public:
Image<TColor, TDepth>^ SmoothMedian(
	int size
)

Parameters

size
Type: System..::.Int32
The size (width & height) of the window

Return Value

The result of mediam smooth

See Also