http://www.emgu.com
Create a median filter
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic MedianFilter(
DepthType srcDepth,
int srcChannels,
int windowSize,
int partition = 128
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
windowSize As Integer,
Optional partition As Integer = 128
)
public:
MedianFilter(
DepthType srcDepth,
int srcChannels,
int windowSize,
int partition = 128
)
new :
srcDepth : DepthType *
srcChannels : int *
windowSize : int *
?partition : int
(* Defaults:
let _partition = defaultArg partition 128
*)
-> MedianFilter
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
Type of of source image. Only 8U images are supported for now. - srcChannels
- Type: SystemInt32
Type of of source image. Only single channel images are supported for now. - windowSize
- Type: SystemInt32
Size of the kernerl used for the filtering. Uses a (windowSize x windowSize) filter. - partition (Optional)
- Type: SystemInt32
Specifies the parallel granularity of the workload. This parameter should be used GPU experts when optimizing performance.
See Also