Class CVFaceDetectSettings
OpenCV face detect settings.
Inherited Members
Namespace: VisioForge.Core.Types.X.OpenCV
Assembly: VisioForge.Core.dll
Syntax
public class CVFaceDetectSettings
Fields
UpdatesMode
The updates mode.
Declaration
public CVFaceDetectUpdates UpdatesMode
Field Value
Type | Description |
---|---|
CVFaceDetectUpdates |
Properties
Display
Gets or sets a value indicating whether the detected faces should be highlighted in the output.
Declaration
public bool Display { get; set; }
Property Value
Type | Description |
---|---|
bool |
|
EyesCascadeFile
Gets or sets the eyes HAAR cascade file.
Declaration
public string EyesCascadeFile { get; set; }
Property Value
Type | Description |
---|---|
string | The eyes cascade file. |
MainCascadeFile
Gets or sets the main face HAAR cascade file.
Declaration
public string MainCascadeFile { get; set; }
Property Value
Type | Description |
---|---|
string | The main cascade file. |
MinDeviation
Gets or sets the minimum image average standard deviation.
Declaration
public int MinDeviation { get; set; }
Property Value
Type | Description |
---|---|
int | The minimum deviation. |
MinNeighbors
Gets or sets the minimum number (minus 1) of neighbor rectangles that makes up an object.
Declaration
public int MinNeighbors { get; set; }
Property Value
Type | Description |
---|---|
int | The minimum neighbors. |
MinSize
Gets or sets the minimum size.
Declaration
public Size MinSize { get; set; }
Property Value
Type | Description |
---|---|
Size | The minimum size. |
MouthCascadeFile
Gets or sets the mouth HAAR cascade file.
Declaration
public string MouthCascadeFile { get; set; }
Property Value
Type | Description |
---|---|
string | The mouth cascade file. |
NoseCascadeFile
Gets or sets the nose cascade file.
Declaration
public string NoseCascadeFile { get; set; }
Property Value
Type | Description |
---|---|
string | The nose cascade file. |
ScaleFactor
Gets or sets the scale factor.
Declaration
public double ScaleFactor { get; set; }
Property Value
Type | Description |
---|---|
double | The scale factor. |
Methods
ProcessPaths(BaseContext)
Processes the paths.
Declaration
public void ProcessPaths(BaseContext context)
Parameters
Type | Name | Description |
---|---|---|
BaseContext | context | The context. |