16 #include "fastdeploy/fastdeploy_model.h" 17 #include "fastdeploy/vision/common/processors/transform.h" 18 #include "fastdeploy/vision/common/result.h" 19 #include "fastdeploy/vision/facedet/ppdet/blazeface/preprocessor.h" 20 #include "fastdeploy/vision/facedet/ppdet/blazeface/postprocessor.h" 39 BlazeFace(
const std::string& model_file,
const std::string& params_file =
"",
40 const std::string& config_file =
"",
44 std::string ModelName() {
return "blaze-face";}
60 virtual bool BatchPredict(
const std::vector<cv::Mat>& images,
61 std::vector<FaceDetectionResult>* results);
70 return postprocessor_;
75 BlazeFacePreprocessor preprocessor_;
76 BlazeFacePostprocessor postprocessor_;
Option object used when create a new Runtime object.
Definition: runtime_option.h:40
Base model object for all the vision models.
Definition: fastdeploy_model.h:21
virtual BlazeFacePreprocessor & GetPreprocessor()
Get preprocessor reference of BlazeFace.
Definition: blazeface.h:64
ModelFormat
Definition: enum_variables.h:67
virtual BlazeFacePostprocessor & GetPostprocessor()
Get postprocessor reference of BlazeFace.
Definition: blazeface.h:69
Face detection result structure for all the face detection models.
Definition: result.h:212
Model with paddlepaddle format.
Definition: enum_variables.h:69
BlazeFace model object used when to load a BlazeFace model exported by BlazeFace. ...
Definition: blazeface.h:29
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16