FastDeploy  latest
Fast & Easy to Deploy!
face_landmark_1000.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 FaceLandmark1000 : public FastDeployModel {
28  public:
36  FaceLandmark1000(const std::string& model_file,
37  const std::string& params_file = "",
38  const RuntimeOption& custom_option = RuntimeOption(),
39  const ModelFormat& model_format = ModelFormat::ONNX);
40 
41  std::string ModelName() const { return "FaceLandmark1000"; }
48  virtual bool Predict(cv::Mat* im, FaceAlignmentResult* result);
49 
54  std::vector<int> GetSize() { return size_; }
59  void SetSize(const std::vector<int>& size) { size_ = size; }
60 
61  private:
62  bool Initialize();
63 
64  bool Preprocess(Mat* mat, FDTensor* outputs,
65  std::map<std::string, std::array<int, 2>>* im_info);
66 
67  bool Postprocess(FDTensor& infer_result, FaceAlignmentResult* result,
68  const std::map<std::string, std::array<int, 2>>& im_info);
69  // tuple of (width, height), default (128, 128)
70  std::vector<int> size_;
71 };
72 
73 } // namespace facealign
74 } // namespace vision
75 } // 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::string ModelName() const
Get model&#39;s name.
Definition: face_landmark_1000.h:41
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
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
void SetSize(const std::vector< int > &size)
Set the input size of image.
Definition: face_landmark_1000.h:59
std::vector< int > GetSize()
Get the input size of image.
Definition: face_landmark_1000.h:54
Model with ONNX format.
Definition: enum_variables.h:70
FaceLandmark1000 model object used when to load a FaceLandmark1000 model exported by FaceLandmark1000...
Definition: face_landmark_1000.h:27
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16