C# Class Emgu.CV.AdaptiveSkinDetector

Adaptive Skin Detector
Inheritance: Emgu.Util.UnmanagedObject
Show file Open project: genecyber/PredatorCV Class Usage Examples

Public Methods

Method Description
AdaptiveSkinDetector ( int samplingDivider, MorphingMethod morphingMethod ) : System

Create an Adaptive Skin Detector

Process ( Byte>.Image image, Byte>.Image hueMask ) : void

Process the image to produce a hue mask

Protected Methods

Method Description
DisposeObject ( ) : void

Release the unmanaged memory associated with this detector

Private Methods

Method Description
CvAdaptiveSkinDetectorCreate ( int samplingDivider, MorphingMethod morphingMethod ) : IntPtr
CvAdaptiveSkinDetectorProcess ( IntPtr detector, IntPtr inputBGRImage, IntPtr outputHueMask ) : void
CvAdaptiveSkinDetectorRelease ( IntPtr detector ) : void

Method Details

AdaptiveSkinDetector() public method

Create an Adaptive Skin Detector
public AdaptiveSkinDetector ( int samplingDivider, MorphingMethod morphingMethod ) : System
samplingDivider int Use 1 for default
morphingMethod MorphingMethod The morphine method for the skin detector
return System

DisposeObject() protected method

Release the unmanaged memory associated with this detector
protected DisposeObject ( ) : void
return void

Process() public method

Process the image to produce a hue mask
public Process ( Byte>.Image image, Byte>.Image hueMask ) : void
image Byte>.Image The input image
hueMask Byte>.Image The resulting mask
return void