FastDeploy  latest
Fast & Easy to Deploy!
postprocessor.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/vision/common/processors/transform.h"
17 #include "fastdeploy/vision/common/result.h"
18 
19 namespace fastdeploy {
20 
21 namespace vision {
22 
23 namespace facedet {
24 
25 class FASTDEPLOY_DECL Yolov7FacePostprocessor{
26  public:
29  Yolov7FacePostprocessor();
30 
38  bool Run(const std::vector<FDTensor>& infer_result,
39  std::vector<FaceDetectionResult>* results,
40  const std::vector<std::map<std::string,
41  std::array<float, 2>>>& ims_info);
42 
44  void SetConfThreshold(const float& conf_threshold) {
45  conf_threshold_ = conf_threshold;
46  }
47 
49  float GetConfThreshold() const { return conf_threshold_; }
50 
52  void SetNMSThreshold(const float& nms_threshold) {
53  nms_threshold_ = nms_threshold;
54  }
55 
57  float GetNMSThreshold() const { return nms_threshold_; }
58 
60  void SetLandmarksPerFace(const int& landmarks_per_face) {
61  landmarks_per_face_ = landmarks_per_face;
62  }
63 
65  int GetLandmarksPerFace() const { return landmarks_per_face_; }
66 
67 
68  protected:
69  float conf_threshold_;
70  float nms_threshold_;
71  int landmarks_per_face_;
72 };
73 
74 } // namespace facedet
75 } // namespace vision
76 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16