FastDeploy  latest
Fast & Easy to Deploy!
base.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. //NOLINT
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 
17 #include "fastdeploy/fastdeploy_model.h"
18 #include "fastdeploy/vision/faceid/contrib/insightface/postprocessor.h"
19 #include "fastdeploy/vision/faceid/contrib/insightface/preprocessor.h"
20 
21 namespace fastdeploy {
22 namespace vision {
23 namespace faceid {
26 class FASTDEPLOY_DECL InsightFaceRecognitionBase : public FastDeployModel {
27  public:
36  const std::string& model_file, const std::string& params_file = "",
37  const RuntimeOption& custom_option = RuntimeOption(),
38  const ModelFormat& model_format = ModelFormat::ONNX);
39 
40  std::string ModelName() const { return "insightface_rec"; }
41 
48  virtual bool Predict(const cv::Mat& im, FaceRecognitionResult* result);
49 
56  virtual bool BatchPredict(const std::vector<cv::Mat>& images,
57  std::vector<FaceRecognitionResult>* results);
58 
61  return preprocessor_;
62  }
63 
66  return postprocessor_;
67  }
68 
69  protected:
70  bool Initialize();
73 };
74 
75 } // namespace faceid
76 } // namespace vision
77 } // namespace fastdeploy
Option object used when create a new Runtime object.
Definition: runtime_option.h:40
Face recognition result structure for all the Face recognition models.
Definition: result.h:307
InsightFaceRecognition model object used when to load a InsightFaceRecognition model exported by Insi...
Definition: base.h:26
Base model object for all the vision models.
Definition: fastdeploy_model.h:21
Preprocessor object for InsightFaceRecognition serials model.
Definition: preprocessor.h:25
Postprocessor object for InsightFaceRecognition serials model.
Definition: postprocessor.h:25
ModelFormat
Definition: enum_variables.h:67
virtual InsightFaceRecognitionPreprocessor & GetPreprocessor()
Get preprocessor reference of InsightFaceRecognition.
Definition: base.h:60
Model with ONNX format.
Definition: enum_variables.h:70
std::string ModelName() const
Get model&#39;s name.
Definition: base.h:40
virtual InsightFaceRecognitionPostprocessor & GetPostprocessor()
Get postprocessor reference of InsightFaceRecognition.
Definition: base.h:65
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16