Table of Contents

Class MedianFilter

Namespace
Emgu.CV.Cuda
Assembly
Emgu.CV.dll

median filtering for each point of the source image.

public class MedianFilter : CudaFilter, IDisposable
Inheritance
MedianFilter
Implements
Inherited Members

Constructors

MedianFilter(DepthType, int, int, int)

Create a median filter

public MedianFilter(DepthType srcDepth, int srcChannels, int windowSize, int partition = 128)

Parameters

srcDepth DepthType

Type of of source image. Only 8U images are supported for now.

srcChannels int

Type of of source image. Only single channel images are supported for now.

windowSize int

Size of the kernerl used for the filtering. Uses a (windowSize x windowSize) filter.

partition int

Specifies the parallel granularity of the workload. This parameter should be used GPU experts when optimizing performance.