FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
pipnet.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 
20 namespace fastdeploy {
21 
22 namespace vision {
23 
24 namespace facealign {
27 class FASTDEPLOY_DECL PIPNet : public FastDeployModel {
28  public:
36  PIPNet(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 "PIPNet"; }
47  virtual bool Predict(cv::Mat* im, FaceAlignmentResult* result);
48 
53  int GetNumLandmarks() {return num_landmarks_; }
58  std::vector<float> GetMeanVals() { return mean_vals_; }
63  std::vector<float> GetStdVals() { return std_vals_; }
68  std::vector<int> GetSize() { return size_; }
73  void SetNumLandmarks(const int& num_landmarks);
78  void SetMeanVals(const std::vector<float>& mean_vals) {
79  mean_vals_ = mean_vals;
80  }
85  void SetStdVals(const std::vector<float>& std_vals) { std_vals_ = std_vals; }
90  void SetSize(const std::vector<int>& size) { size_ = size; }
91 
92  private:
93  bool Initialize();
94 
95  bool Preprocess(Mat* mat, FDTensor* outputs,
96  std::map<std::string, std::array<int, 2>>* im_info);
97 
98  bool Postprocess(std::vector<FDTensor>& infer_result,
99  FaceAlignmentResult* result,
100  const std::map<std::string, std::array<int, 2>>& im_info);
101  void GenerateLandmarks(std::vector<FDTensor>& infer_result,
102  FaceAlignmentResult* result,
103  float img_height, float img_width);
104  std::map<int, int> num_lms_map_;
105  std::map<int, int> max_len_map_;
106  std::map<int, std::vector<int>> reverse_index1_map_;
107  std::map<int, std::vector<int>> reverse_index2_map_;
108  int num_nb_;
109  int net_stride_;
110  // Now PIPNet support num_landmarks in {19, 29, 68, 98}
111  std::vector<int> supported_num_landmarks_;
112  // tuple of (width, height), default (256, 256)
113  std::vector<int> size_;
114 
115  // Mean parameters for normalize, size should be the the same as channels,
116  // default mean_vals = {0.485f, 0.456f, 0.406f}
117  std::vector<float> mean_vals_;
118  // Std parameters for normalize, size should be the the same as channels,
119  // default std_vals = {0.229f, 0.224f, 0.225f}
120  std::vector<float> std_vals_;
121  // number of landmarks
122  int num_landmarks_;
123 };
124 
125 } // namespace facealign
126 } // namespace vision
127 } // 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
std::vector< int > GetSize()
Get the input size of image.
Definition: pipnet.h:68
int GetNumLandmarks()
Get the number of landmakrs.
Definition: pipnet.h:53
ModelFormat
Definition: enum_variables.h:67
FDTensor object used to represend data matrix.
Definition: fd_tensor.h:31
Face Alignment result structure for all the face alignment models.
Definition: result.h:248
PIPNet model object used when to load a PIPNet model exported by PIPNet.
Definition: pipnet.h:27
void SetSize(const std::vector< int > &size)
Set the input size of image.
Definition: pipnet.h:90
std::vector< float > GetStdVals()
Get the std values for normalization.
Definition: pipnet.h:63
std::string ModelName() const
Get model&#39;s name.
Definition: pipnet.h:40
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
std::vector< float > GetMeanVals()
Get the mean values for normalization.
Definition: pipnet.h:58
Model with ONNX format.
Definition: enum_variables.h:70
void SetMeanVals(const std::vector< float > &mean_vals)
Set the mean values for normalization.
Definition: pipnet.h:78
void SetStdVals(const std::vector< float > &std_vals)
Set the std values for normalization.
Definition: pipnet.h:85
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16