Table of Contents

Class CVFaceDetectSettings

Namespace
VisioForge.Core.Types.X.OpenCV
Assembly
VisioForge.Core.dll

OpenCV face detect settings.

public class CVFaceDetectSettings

Inheritance

Inherited Members

Fields

UpdatesMode

The updates mode.

public CVFaceDetectUpdates UpdatesMode

Field Value

CVFaceDetectUpdates

Properties

Display

Gets or sets a value indicating whether the detected faces should be highlighted in the output.

public bool Display { get; set; }

Property Value

bool

EyesCascadeFile

Gets or sets the eyes HAAR cascade file.

public string EyesCascadeFile { get; set; }

Property Value

string

MainCascadeFile

Gets or sets the main face HAAR cascade file.

public string MainCascadeFile { get; set; }

Property Value

string

MinDeviation

Gets or sets the minimum image average standard deviation.

public int MinDeviation { get; set; }

Property Value

int

MinNeighbors

Gets or sets the minimum number (minus 1) of neighbor rectangles that makes up an object.

public int MinNeighbors { get; set; }

Property Value

int

MinSize

Gets or sets the minimum size.

public Size MinSize { get; set; }

Property Value

Size

MouthCascadeFile

Gets or sets the mouth HAAR cascade file.

public string MouthCascadeFile { get; set; }

Property Value

string

NoseCascadeFile

Gets or sets the nose cascade file.

public string NoseCascadeFile { get; set; }

Property Value

string

ScaleFactor

Gets or sets the scale factor.

public double ScaleFactor { get; set; }

Property Value

double

Methods

ProcessPaths(BaseContext)

Processes the paths.

public void ProcessPaths(BaseContext context)

Parameters

context BaseContext

The context.