16 #include "fastdeploy/fastdeploy_model.h" 17 #include "fastdeploy/vision/common/processors/transform.h" 18 #include "fastdeploy/vision/common/result.h" 36 PIPNet(
const std::string& model_file,
const std::string& params_file =
"",
68 std::vector<int>
GetSize() {
return size_; }
73 void SetNumLandmarks(
const int& num_landmarks);
79 mean_vals_ = mean_vals;
85 void SetStdVals(
const std::vector<float>& std_vals) { std_vals_ = std_vals; }
90 void SetSize(
const std::vector<int>& size) { size_ = size; }
96 std::map<std::string, std::array<int, 2>>* im_info);
98 bool Postprocess(std::vector<FDTensor>& infer_result,
100 const std::map<std::string, std::array<int, 2>>& im_info);
101 void GenerateLandmarks(std::vector<FDTensor>& infer_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_;
111 std::vector<int> supported_num_landmarks_;
113 std::vector<int> size_;
117 std::vector<float> mean_vals_;
120 std::vector<float> std_vals_;
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'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