EigenFaceRecognizer Constructor |
http://www.emgu.com
Create an EigenFaceRecognizer
Namespace:
Emgu.CV.Face
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic EigenFaceRecognizer(
int numComponents = 0,
double threshold = 1.79769313486232E+308
)
Public Sub New (
Optional numComponents As Integer = 0,
Optional threshold As Double = 1.79769313486232E+308
)
public:
EigenFaceRecognizer(
int numComponents = 0,
double threshold = 1.79769313486232E+308
)
new :
?numComponents : int *
?threshold : float
(* Defaults:
let _numComponents = defaultArg numComponents 0
let _threshold = defaultArg threshold 1.79769313486232E+308
*)
-> EigenFaceRecognizer
Parameters
- numComponents (Optional)
- Type: SystemInt32
The number of components - threshold (Optional)
- Type: SystemDouble
The distance threshold
See Also