Face Detection and Recognition¶
-
ErrorCode Trueface::SDK::detectFaces(std::vector<FaceBoxAndLandmarks> &faceBoxAndLandmarks)¶
Detect all the faces in the image. This method has a small false positive rate. To reduce the false positive rate to near zero, filter out faces with score lower than 0.90. Alternatively, you can use the
Trueface::FaceDetectionFilter
configuration option to filter the detected faces.The face detector has a detection scale range of about 5 octaves. ConfigurationOptions::smallestFaceHeight determines the lower of the detection scale range. E.g., setting ConfigurationOptions::smallestFaceHeight to 40 pixels yields the detection scale range of ~40 pixels to 1280 (=40x2^5) pixels.
- Parameters
faceBoxAndLandmarks – [out] a vector of FaceBoxAndLandmarks representing each of the detected faces. If not faces are found, the vector will be empty. The detected faces are sorted in order of descending face score.
- Returns
error code, see ErrorCode.
The recall and precision of the face detection algorithm on the WIDER FACE dataset:
The effect of face height on similarity score:
-
ErrorCode Trueface::SDK::detectLargestFace(FaceBoxAndLandmarks &faceBoxAndLandmarks, bool &found)¶
Detect the largest face in the image. This method has a small false positive rate. To reduce the false positive rate to near zero, filter out faces with score lower than 0.90. Alternatively, you can use the
Trueface::FaceDetectionFilter
configuration option to filter the detected faces. See detectFaces() for the detection scale range.- Parameters
faceBoxAndLandmarks – [out] the FaceBoxAndLandmarks containing the landmarks and bounding box of the largest detected face in the image.
found – [out] whether a face was found in the image.
- Returns
error code, see ErrorCode.
Deprecated since version 0.17: Use detectFaces()
or detectLargestFace()
instead.
-
ErrorCode Trueface::SDK::getFaceLandmarks(const FaceBoxAndLandmarks &faceBoxAndLandmarks, std::vector<Point<int>> &points)¶
Obtain the 106 face landmarks.
- Parameters
faceBoxAndLandmarks – [in] FaceBoxAndLandmarks returned by detectFaces() or detectLargestFace().
points – [out] a vector of 106 face landmark points.
- Returns
error code, see ErrorCode.
The order of the face landmarks:
-
ErrorCode Trueface::SDK::extractAlignedFace(const FaceBoxAndLandmarks &faceBoxAndLandmarks, uint8_t *faceImage, int marginLeft = 0, int marginTop = 0, int marginRight = 0, int marginBottom = 0, float scale = 1.0)¶
Align the the detected face to be optimized for passing to feature extraction. If using the face chip with Trueface algorithms (ex face recognition), do not change the default margin and scale values.
- Parameters
faceBoxAndLandmarks – [in] the FaceBoxAndLandmarks returned by detectLargestFace() or detectFaces().
faceImage – [out] the pointer to a uint8_t buffer of 112x112x3 = 37632 bytes (when using default margins and scale). The aligned face image is stored in this buffer. The memory must be allocated by the user. If using non-default margin and scale (again, non-standard face chip sizes will not work with Trueface algorithms), the faceImage will be of size: width = int((112+marginLeft+marginRight)*scale), height = int((112+marginTop+marginBottom)*scale), and therefore the buffer size is computed as: width * height * 3
marginLeft – [in] adds a margin to the left side of the face chip.
marginTop – [in] adds a margin to the top side of the face chip.
marginRight – [in] adds a margin to the right side of the face chip.
marginBottom – [in] adds a margin to the bottom side of the face chip.
scale – [in] changes the scale of the face chip.
- Returns
error code, see ErrorCode.
-
void Trueface::SDK::saveFaceImage(uint8_t *faceImage, std::string filepath)¶
Store the face image in JPEG file.
- Parameters
faceImage – [in] the extracted image by extractAlignedFace(). Face image must have size of 112x112 pixels (default extractAlignedFace() margin and scale values).
filepath – [in] relative or absolute file path without a file extension.
-
ErrorCode Trueface::SDK::getFaceFeatureVector(const FaceBoxAndLandmarks &faceBoxAndLandmarks, Faceprint &faceprint)¶
Extract the face feature vector from the face box.
- Parameters
faceBoxAndLandmarks – [in] the FaceBoxAndLandmarks returned by detectFaces() or detectLargestFace().
faceprint – [out] Faceprint to contain the face template
- Returns
error code, see ErrorCode.
-
ErrorCode Trueface::SDK::getFaceFeatureVector(uint8_t *alignedFaceImage, Faceprint &faceprint)¶
Extract the face feature vector from an aligned face image.
- Parameters
alignedFaceImage – [in] buffer returned by extractAlignedFace(). Face image must be have size of 112x112 pixels (default extractAlignedFace() margin and scale values).
faceprint – [out] a Faceprint object which will contain the face feature vector.
- Returns
error code, see ErrorCode.
-
ErrorCode Trueface::SDK::getFaceFeatureVectors(std::vector<uint8_t*> &alignedFaceImages, std::vector<Faceprint> &faceprints)¶
Extract the face feature vectors from the aligned face images. This batch processing method increases throughput on platforms such as cuda.
- Parameters
alignedFaceImages – [in] vector of aligned face image buffers.
faceprints – [out] vector of Faceprint object which will contain the face feature vectors.
- Returns
error code, see ErrorCode.
-
ErrorCode Trueface::SDK::getLargestFaceFeatureVector(Faceprint &faceprint, bool &foundFace)¶
Detect the largest face in the image and return its feature vector.
- Parameters
faceprint – [out] a Faceprint object which will contain the face feature vector.
foundFace – [out] indicates if a face was detected in the image. If no face was detected, then the faceprint will be empty.
- Returns
error code, see ErrorCode.
-
static std::string Trueface::SDK::faceprintToJson(const Faceprint &faceprint)¶
Convert a Faceprint into a json string.
-
static ErrorCode Trueface::SDK::jsonToFaceprint(const std::string &jsonStr, Faceprint &faceprint)¶
Populate a Faceprint from a json string.
- Parameters
jsonStr – [in] The json string representation of a Faceprint, generated from the faceprintToJson() function.
faceprint – [out] The Faceprint which will be populated from the json string.
- Returns
error code, see ErrorCode.
-
static ErrorCode Trueface::SDK::getSimilarity(const Faceprint &faceprint1, const Faceprint &faceprint2, float &matchProbability, float &similarityMeasure)¶
Compute the similarity between two feature vectors, or how similar two faces are.
-
ErrorCode Trueface::SDK::estimateFaceImageQuality(uint8_t *alignedFaceImage, float &quality)¶
Estimate the quality of the face image for recognition.
- Parameters
alignedFaceImage – [in] The array returned by extractAlignedFace().
quality – [out] a value between 0 to 1, 1 being prefect quality for recognition.
- Returns
error code, see ErrorCode.
-
ErrorCode Trueface::SDK::estimateHeadOrientation(const FaceBoxAndLandmarks &faceBoxAndLandmarks, float &yaw, float &pitch, float &roll)¶
Estimate the head pose.
- Parameters
faceBoxAndLandmarks – [in] FaceBoxAndLandmarks returned by detectFaces() or detectLargestFace().
yaw – [out] the rotation angle around the image’s vertical axis, in radians.
pitch – [out] the rotation angle around the image’s transverse axis, in radians.
roll – [out] the rotation angle around the image’s longitudinal axis, in radians.
- Returns
error code, see ErrorCode.
The accuracy of this method is estimated using 1920x1080 pixel test images. A test image:
The accuracy of the head orientation estimation:
The effect of the face yaw angle on match similarity can be seen in the following figure:
The effect of the face pitch angle on match similarity can be seen in the following figure:
-
struct Trueface::FaceBoxAndLandmarks¶
-
struct Trueface::Faceprint¶
Face feature vector and meta data
Public Members
-
std::vector<float> featureVector¶
Vector of floats which describe the face
-
std::string sdkVersion¶
SDK version used to generate feature vector
-
std::string modelName¶
Name of model used to generate feature vector
-
ModelOptions modelOptions¶
Additional options used when generating the feature vector
-
std::vector<float> featureVector¶
-
struct Trueface::ModelOptions¶
Options used when generating the feature vector
Public Members
-
bool frVectorCompression = false¶
Indicates if the
Trueface::ConfigurationOptions.frVectorCompression
was enabled when generating the template
-
bool frVectorCompression = false¶
-
template<typename T>
struct Trueface::Point¶