C# Class Emgu.CV.AdaptiveSkinDetector

Adaptive Skin Detector
Inheritance: Emgu.Util.UnmanagedObject
Afficher le fichier Open project: genecyber/PredatorCV Class Usage Examples

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
DisposeObject ( ) : void

Release the unmanaged memory associated with this detector

Private Methods

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

Method Details

AdaptiveSkinDetector() public méthode

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
Résultat System

DisposeObject() protected méthode

Release the unmanaged memory associated with this detector
protected DisposeObject ( ) : void
Résultat void

Process() public méthode

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
Résultat void