FastDeploy  latest
Fast & Easy to Deploy!
preprocessor.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 namespace vision {
21 
22 namespace faceid {
25 class FASTDEPLOY_DECL AdaFacePreprocessor {
26  public:
30 
37  bool Run(std::vector<FDMat>* images, std::vector<FDTensor>* outputs);
38 
40  std::vector<int> GetSize() { return size_; }
41 
43  void SetSize(std::vector<int>& size) { size_ = size; }
44 
46  std::vector<float> GetAlpha() { return alpha_; }
47 
49  void SetAlpha(std::vector<float>& alpha) { alpha_ = alpha; }
50 
52  std::vector<float> GetBeta() { return beta_; }
53 
55  void SetBeta(std::vector<float>& beta) { beta_ = beta; }
56 
57  bool GetPermute() { return permute_; }
58 
60  void SetPermute(bool permute) { permute_ = permute; }
61 
62  protected:
63  bool Preprocess(FDMat* mat, FDTensor* output);
64  // Argument for image preprocessing step, tuple of (width, height),
65  // decide the target size after resize, default (112, 112)
66  std::vector<int> size_;
67  // Argument for image preprocessing step, alpha values for normalization,
68  // default alpha = {1.f / 127.5f, 1.f / 127.5f, 1.f / 127.5f};
69  std::vector<float> alpha_;
70  // Argument for image preprocessing step, beta values for normalization,
71  // default beta = {-1.f, -1.f, -1.f}
72  std::vector<float> beta_;
73  // Argument for image preprocessing step, whether to swap the B and R channel,
74  // such as BGR->RGB, default true.
75  bool permute_;
76 };
77 
78 } // namespace faceid
79 } // namespace vision
80 } // namespace fastdeploy
void SetAlpha(std::vector< float > &alpha)
Set alpha.
Definition: preprocessor.h:49
void SetPermute(bool permute)
Set permute.
Definition: preprocessor.h:60
FDTensor object used to represend data matrix.
Definition: fd_tensor.h:31
std::vector< float > GetBeta()
Get beta.
Definition: preprocessor.h:52
std::vector< float > GetAlpha()
Get alpha.
Definition: preprocessor.h:46
std::vector< int > GetSize()
Get Size.
Definition: preprocessor.h:40
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
void SetBeta(std::vector< float > &beta)
Set beta.
Definition: preprocessor.h:55
void SetSize(std::vector< int > &size)
Set size.
Definition: preprocessor.h:43
Preprocessor object for AdaFace serials model.
Definition: preprocessor.h:25
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16