LBPHFaceRecognizer Constructor |
http://www.emgu.com
Create a LBPH face recognizer
Namespace: Emgu.CV.FaceAssembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic LBPHFaceRecognizer(
int radius = 1,
int neighbors = 8,
int gridX = 8,
int gridY = 8,
double threshold = 1.79769313486232E+308
)
Public Sub New (
Optional radius As Integer = 1,
Optional neighbors As Integer = 8,
Optional gridX As Integer = 8,
Optional gridY As Integer = 8,
Optional threshold As Double = 1.79769313486232E+308
)
public:
LBPHFaceRecognizer(
int radius = 1,
int neighbors = 8,
int gridX = 8,
int gridY = 8,
double threshold = 1.79769313486232E+308
)
new :
?radius : int *
?neighbors : int *
?gridX : int *
?gridY : int *
?threshold : float
(* Defaults:
let _radius = defaultArg radius 1
let _neighbors = defaultArg neighbors 8
let _gridX = defaultArg gridX 8
let _gridY = defaultArg gridY 8
let _threshold = defaultArg threshold 1.79769313486232E+308
*)
-> LBPHFaceRecognizer
Parameters
- radius (Optional)
- Type: SystemInt32
Radius - neighbors (Optional)
- Type: SystemInt32
Neighbors - gridX (Optional)
- Type: SystemInt32
Grid X - gridY (Optional)
- Type: SystemInt32
Grid Y - threshold (Optional)
- Type: SystemDouble
The distance threshold
See Also