FastDeploy  latest
Fast & Easy to Deploy!
rec_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/processors/manager.h"
18 #include "fastdeploy/vision/common/result.h"
19 
20 namespace fastdeploy {
21 namespace vision {
22 
23 namespace ocr {
26 class FASTDEPLOY_DECL RecognizerPreprocessor : public ProcessorManager {
27  public:
36  bool Run(std::vector<FDMat>* images, std::vector<FDTensor>* outputs,
37  size_t start_index, size_t end_index,
38  const std::vector<int>& indices);
39 
48  virtual bool Apply(FDMatBatch* image_batch, std::vector<FDTensor>* outputs);
49 
53  void SetStaticShapeInfer(bool static_shape_infer) {
54  static_shape_infer_ = static_shape_infer;
55  }
57  bool GetStaticShapeInfer() const { return static_shape_infer_; }
58 
62  void SetNormalize(const std::vector<float>& mean,
63  const std::vector<float>& std,
64  bool is_scale) {
65  normalize_permute_op_ =
66  std::make_shared<NormalizeAndPermute>(mean, std, is_scale);
67  normalize_op_ = std::make_shared<Normalize>(mean, std, is_scale);
68  }
69 
71  void SetRecImageShape(const std::vector<int>& rec_image_shape) {
72  rec_image_shape_ = rec_image_shape;
73  }
75  std::vector<int> GetRecImageShape() { return rec_image_shape_; }
76 
78  void DisableNormalize() { disable_permute_ = true; }
80  void DisablePermute() { disable_normalize_ = true; }
81 
82  private:
83  void OcrRecognizerResizeImage(FDMat* mat, float max_wh_ratio,
84  const std::vector<int>& rec_image_shape,
85  bool static_shape_infer);
86  // for recording the switch of hwc2chw
87  bool disable_permute_ = false;
88  // for recording the switch of normalize
89  bool disable_normalize_ = false;
90  std::vector<int> rec_image_shape_ = {3, 48, 320};
91  bool static_shape_infer_ = false;
92  std::shared_ptr<Resize> resize_op_;
93  std::shared_ptr<Pad> pad_op_;
94  std::shared_ptr<NormalizeAndPermute> normalize_permute_op_;
95  std::shared_ptr<Normalize> normalize_op_;
96  std::shared_ptr<HWC2CHW> hwc2chw_op_;
97  std::shared_ptr<Cast> cast_op_;
98 };
99 
100 } // namespace ocr
101 } // namespace vision
102 } // namespace fastdeploy
bool GetStaticShapeInfer() const
Get static_shape_infer of the recognition preprocess.
Definition: rec_preprocessor.h:57
void SetNormalize(const std::vector< float > &mean, const std::vector< float > &std, bool is_scale)
Definition: rec_preprocessor.h:62
void SetRecImageShape(const std::vector< int > &rec_image_shape)
Set rec_image_shape for the recognition preprocess.
Definition: rec_preprocessor.h:71
bool Run(std::vector< FDMat > *images, std::vector< FDTensor > *outputs)
Process the input images and prepare input tensors for runtime.
Definition: manager.cc:91
Definition: float16.h:572
void DisableNormalize()
This function will disable normalize in preprocessing step.
Definition: rec_preprocessor.h:78
void DisablePermute()
This function will disable hwc2chw in preprocessing step.
Definition: rec_preprocessor.h:80
void SetStaticShapeInfer(bool static_shape_infer)
Definition: rec_preprocessor.h:53
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
FDMatBatch contains batch data for preprocess.
Definition: mat_batch.h:28
std::vector< int > GetRecImageShape()
Get rec_image_shape for the recognition preprocess.
Definition: rec_preprocessor.h:75
Preprocessor object for PaddleClas serials model.
Definition: rec_preprocessor.h:26
ProcessorManager for Preprocess.
Definition: manager.h:27
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16