Function to get running results of the facedetect neural network in batch mode.
Prototype
std::vector<
FaceDetectResult
> run(const std::vector< cv::Mat > &imgs)=0;
Parameters
The following table lists the run function arguments.
| Type | Member | Description |
|---|---|---|
| const std::vector< cv::Mat > & | imgs | Input data of input images (std:vector<cv::Mat>). The size of input images equals batch size obtained by get_input_batch. The input images need to be resized to InputWidth and InputHeight required by the network. |
Returns
The vector ofFaceDetectResult
.