FaceRecognizerSF class
DNN-based face recognizer.
model download link: https://github.com/opencv/opencv_zoo/tree/master/models/face_recognition_sface
- Inheritance
- Available extensions
Constructors
- FaceRecognizerSF.fromFile(String model, String config, {int backendId = 0, int targetId = 0})
-
Creates an instance of this class with given parameters.
factory
- FaceRecognizerSF.fromPointer(FaceRecognizerSFPtr ptr, [bool attach = true])
-
factory
Properties
Methods
-
alignCrop(
Mat srcImg, Mat faceBox) → Mat - Aligns detected face with the source input image and crops it.
-
dispose(
) → void -
feature(
Mat alignedImg, {bool clone = false}) → Mat - Extracts face feature from aligned image.
-
match(
Mat faceFeature1, Mat faceFeature2, {int disType = FR_COSINE}) → double - Calculates the distance between two face features.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- finalizer → NativeFinalizer
-
final
Constants
- DIS_TYPE_FR_NORM_L2 → const int
- DIS_TYPR_FR_COSINE → const int
- FR_COSINE → const int
- Definition of distance used for calculating the distance between two face features.
- FR_NORM_L2 → const int
- Definition of distance used for calculating the distance between two face features.