FaceDetection Class

FaceDetectionResult Class

Description
A class used to represent and retrieve data related to faces detected by a face detection neural network.

Syntax
class FaceDetectionResult

Members

Public Constructors 
FaceDetectionResult::FaceDetectionResultConstructs a FaceDetectionResult object.
Public Methods 
FaceDetectionResult::nameGet name of detected result.
FaceDetectionResult::scoreGet confidence score of detected face.
FaceDetectionResult::xMinGet x coordinate of the top left corner of the bounding box containing the detected face.
FaceDetectionResult::xMaxGet x coordinate of the bottom right corner of the bounding box containing the detected face.
FaceDetectionResult::yMinGet y coordinate of the top left corner of the bounding box containing the detected face.
FaceDetectionResult::yMaxGet y coordinate of the bottom right corner of the bounding box containing the detected face.
FaceDetectionResult::xFeatureGet y coordinate of a feature point on the detected face.

NNFaceDetection Class

Description
A class used to configure, run, and retrieve results of a face detection neural network model.

Syntax
class NNFaceDetection

Members

Public Constructors 
NNFaceDetection::NNFaceDetectionConstructs an NNFaceDetection object.
Public Methods 
NNFaceDetection::configVideoConfigure input video stream parameters.
NNFaceDetection::configFaceRecogCascadedModeConfigure for running face recognition after face detection.
NNFaceDetection::beginStart face detection process on input video.
NNFaceDetection::endStop face detection process on input video.
NNFaceDetection::setResultCallbackSet a callback function to receive face detection results.
NNFaceDetection::getResultCountGet number of face detection results.
NNFaceDetection::getResultGet face detection results.

FaceDetectionResult::name

Description
Get name of detected result.

Syntax
const char* name(void);

Parameters
NA

Returns
A pointer to a character array containing the category name. For face detection, the category name is “Face”.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::score

Description
Get confidence score of detected face.

Syntax
int score(void);

Parameters
NA

Returns
An integer ranging from 0 to 100 representing the confidence of the detected face.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::xMin

Description
Get x coordinate of the top left corner of the bounding box containing the detected face.

Syntax
float xMin(void);

Parameters
NA

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the left edge of the input video frame and 1.00 indicating the right edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::xMax

Description
Get x coordinate of the bottom right corner of the bounding box containing the detected face.

Syntax
float xMax(void);

Parameters
NA

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the left edge of the input video frame and 1.00 indicating the right edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::yMin

Description
Get y coordinate of the top left corner of the bounding box containing the detected face.

Syntax
float yMin(void);

Parameters
NA

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the top edge of the input video frame and 1.00 indicating the bottom edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::yMax

Description
Get y coordinate of the bottom right corner of the bounding box containing the detected face.

Syntax
float yMax(void);

Parameters
NA

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the top edge of the input video frame and 1.00 indicating the bottom edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::xFeature

Description
Get x coordinate of a feature point on the detected face.

Syntax
float xFeature(uint8_t index);

Parameters
index: index number of face feature point. Feature points:
0 – right eye
1 – left eye
2 – nose
3 – right mouth corner
4 – left mouth corner

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the left edge of the input video frame and 1.00 indicating the right edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

FaceDetectionResult::yFeature

Description
Get y coordinate of a feature point on the detected face.

Syntax
float yFeature(uint8_t index);

Parameters
index: index number of face feature point. Feature points:
0 – right eye
1 – left eye
2 – nose
3 – right mouth corner
4 – left mouth corner

Returns
A float ranging from 0.00 to 1.00, with 0.00 indicating the left edge of the input video frame and 1.00 indicating the right edge of the input video frame.

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::configVideo

Description
Configure input video stream parameters.

Syntax
void configVideo(VideoSetting& config);

Parameters
config: VideoSetting class object containing desired video configuration.

Returns
NA

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::configFaceRecogCascadedMode

Description
Configure for running face recognition after face detection.

Syntax
void configFaceRecogCascadedMode(uint8_t enable);

Parameters
enable: 1 to enable configuration for running face recognition NN model after face detection.

Returns
NA

Example Code
Example: RTSPFaceRecognition
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceRecognition/RTSPFaceRecognition.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::begin

Description
Start face detection process on input video.

Syntax
void begin(void);

Parameters
NA

Returns
NA

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::end

Description
Stop face detection process on input video.

Syntax
void end(void);

Parameters
NA

Returns
NA

Example Code
NA

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::setResultCallback

Description
Set a callback function to receive face detection results.

Syntax
void setResultCallback(void (*fd_callback)(std::vector));

Parameters
fd_callback: A callback function that accepts a vector of FaceDetectionResultclass objects as argument and returns void.

Returns
NA

Example Code
Example: RTSPFaceDetection
(https://github.com/ambiot/ambpro2_arduino/blob/dev/Arduino_package/hardware/libraries/NeuralNetwork/examples/RTSPFaceDetection/RTSPFaceDetection.ino)

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function. The callback function will be called with the latest results once per iteration.

NNFaceDetection::getResultCount

Description
Get number of face detection results.

Syntax
uint16_t getResultCount(void);

Parameters
NA

Returns
The number of detected faces in the most recent set of results, as an unsigned integer.

Example Code
NA

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

NNFaceDetection::getResult

Description
Get face detection results.

Syntax
FaceDetectionResult getResult(uint16_t index);
std::vector getResult(void);

Parameters
index: index of specific face detection result to retrieve.

Returns
If no index is specified, the function returns all detected faces contained in a vector of FaceDetectionResult class objects.
If an index is specified, the function returns the specific detected face contained in a FaceDetectionResult class object.

Example Code
NA

Notes and Warnings
“NNFaceDetection.h” must be included to use the class function.

请先确认已安装QQ通讯软体