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 InsightFaceRecognitionPreprocessor {
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 
58  void DisableNormalize() { disable_normalize_ = true; }
59 
61  void DisablePermute() { disable_permute_ = true; }
62 
63  protected:
64  bool Preprocess(FDMat* mat, FDTensor* output);
65  // Argument for image preprocessing step, tuple of (width, height),
66  // decide the target size after resize, default (112, 112)
67  std::vector<int> size_;
68  // Argument for image preprocessing step, alpha values for normalization,
69  // default alpha = {1.f / 127.5f, 1.f / 127.5f, 1.f / 127.5f};
70  std::vector<float> alpha_;
71  // Argument for image preprocessing step, beta values for normalization,
72  // default beta = {-1.f, -1.f, -1.f}
73  std::vector<float> beta_;
74  // for recording the switch of normalize
75  bool disable_normalize_ = false;
76  // Argument for image preprocessing step, whether to swap the B and R channel,
77  // such as BGR->RGB, default true.
78  bool disable_permute_ = false;
79 };
80 
81 } // namespace faceid
82 } // namespace vision
83 } // namespace fastdeploy
void DisableNormalize()
This function will disable normalize and hwc2chw in preprocessing step.
Definition: preprocessor.h:58
Preprocessor object for InsightFaceRecognition serials model.
Definition: preprocessor.h:25
void SetAlpha(std::vector< float > &alpha)
Set alpha.
Definition: preprocessor.h:49
FDTensor object used to represend data matrix.
Definition: fd_tensor.h:31
void SetSize(std::vector< int > &size)
Set size.
Definition: preprocessor.h:43
void SetBeta(std::vector< float > &beta)
Set beta.
Definition: preprocessor.h:55
std::vector< float > GetAlpha()
Get alpha.
Definition: preprocessor.h:46
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
std::vector< float > GetBeta()
Get beta.
Definition: preprocessor.h:52
std::vector< int > GetSize()
Get Size.
Definition: preprocessor.h:40
void DisablePermute()
This function will disable hwc2chw in preprocessing step.
Definition: preprocessor.h:61
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16