16 #include "fastdeploy/vision/common/processors/transform.h" 17 #include "fastdeploy/vision/common/processors/manager.h" 18 #include "fastdeploy/vision/common/result.h" 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);
48 virtual bool Apply(
FDMatBatch* image_batch, std::vector<FDTensor>* outputs);
54 static_shape_infer_ = static_shape_infer;
63 const std::vector<float>&
std,
65 normalize_permute_op_ =
66 std::make_shared<NormalizeAndPermute>(mean, std, is_scale);
67 normalize_op_ = std::make_shared<Normalize>(mean, std, is_scale);
72 rec_image_shape_ = rec_image_shape;
83 void OcrRecognizerResizeImage(
FDMat* mat,
float max_wh_ratio,
84 const std::vector<int>& rec_image_shape,
85 bool static_shape_infer);
87 bool disable_permute_ =
false;
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_;
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