Class FacemarkLBF.Params
Inheritance
System.Object
FacemarkLBF.Params
Assembly: OpenCvSharp.dll
Syntax
public sealed class Params : DisposableCvObject, ICvPtrHolder
Constructors
|
Improve this Doc
View Source
Params()
Declaration
Properties
|
Improve this Doc
View Source
BaggingOverlap
overlap ratio for training the LBF feature
Declaration
public double BaggingOverlap { get; set; }
Property Value
Type |
Description |
System.Double |
|
|
Improve this Doc
View Source
CascadeFace
filename of the face detector model
Declaration
public string CascadeFace { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
DetectROI
Declaration
public Rect DetectROI { get; set; }
Property Value
Type |
Description |
OpenCvSharp.Rect |
|
|
Improve this Doc
View Source
FeatsM
Declaration
public IReadOnlyList<int> FeatsM { get; set; }
Property Value
Type |
Description |
IReadOnlyList<System.Int32> |
|
|
Improve this Doc
View Source
InitShapeN
multiplier for augment the training data
Declaration
public int InitShapeN { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
ModelFilename
filename where the trained model will be saved
Declaration
public string ModelFilename { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
NLandmarks
number of landmark points
Declaration
public int NLandmarks { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Pupils0
index of facemark points on pupils of left and right eye
Declaration
public IReadOnlyList<int> Pupils0 { get; set; }
Property Value
Type |
Description |
IReadOnlyList<System.Int32> |
|
|
Improve this Doc
View Source
Pupils1
index of facemark points on pupils of left and right eye
Declaration
public IReadOnlyList<int> Pupils1 { get; set; }
Property Value
Type |
Description |
IReadOnlyList<System.Int32> |
|
|
Improve this Doc
View Source
RadiusM
Declaration
public IReadOnlyList<double> RadiusM { get; set; }
Property Value
Type |
Description |
IReadOnlyList<System.Double> |
|
|
Improve this Doc
View Source
SaveModel
flag to save the trained model or not
Declaration
public bool SaveModel { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Seed
seed for shuffling the training data
Declaration
public uint Seed { get; set; }
Property Value
Type |
Description |
System.UInt32 |
|
|
Improve this Doc
View Source
ShapeOffset
offset for the loaded face landmark points
Declaration
public double ShapeOffset { get; set; }
Property Value
Type |
Description |
System.Double |
|
|
Improve this Doc
View Source
StagesN
number of refinement stages
Declaration
public int StagesN { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
TreeDepth
the depth of decision tree, defines the size of feature
Declaration
public int TreeDepth { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
TreeN
number of tree in the model for each landmark point refinement
Declaration
public int TreeN { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Verbose
show the training print-out
Declaration
public bool Verbose { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Improve this Doc
View Source
DisposeUnmanaged()
Releases managed resources
Declaration
protected override void DisposeUnmanaged()
Overrides
|
Improve this Doc
View Source
Read(FileNode)
Declaration
public void Read(FileNode fn)
Parameters
|
Improve this Doc
View Source
Write(FileStorage)
Declaration
public void Write(FileStorage fs)
Parameters
Implements