FastDeploy  latest
Fast & Easy to Deploy!
blazeface.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
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"
21 
22 namespace fastdeploy {
23 
24 namespace vision {
25 
26 namespace facedet {
29 class FASTDEPLOY_DECL BlazeFace: public FastDeployModel{
30  public:
39  BlazeFace(const std::string& model_file, const std::string& params_file = "",
40  const std::string& config_file = "",
41  const RuntimeOption& custom_option = RuntimeOption(),
42  const ModelFormat& model_format = ModelFormat::PADDLE);
43 
44  std::string ModelName() {return "blaze-face";}
45 
52  bool Predict(const cv::Mat& im, FaceDetectionResult* result);
53 
60  virtual bool BatchPredict(const std::vector<cv::Mat>& images,
61  std::vector<FaceDetectionResult>* results);
62 
64  virtual BlazeFacePreprocessor& GetPreprocessor() {
65  return preprocessor_;
66  }
67 
69  virtual BlazeFacePostprocessor& GetPostprocessor() {
70  return postprocessor_;
71  }
72 
73  protected:
74  bool Initialize();
75  BlazeFacePreprocessor preprocessor_;
76  BlazeFacePostprocessor postprocessor_;
77 };
78 
79 } // namespace facedet
80 
81 } // namespace vision
82 
83 } // namespace fastdeploy
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