mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-08 18:11:00 +08:00

* Refactor PaddleSeg with preprocessor && postprocessor * Fix bugs * Delete redundancy code * Modify by comments * Refactor according to comments * Add batch evaluation * Add single test script * Add ppliteseg single test script && fix eval(raise) error * fix bug * Fix evaluation segmentation.py batch predict * Fix segmentation evaluation bug * Fix evaluation segmentation bugs * Update segmentation result docs * Update old predict api and DisableNormalizeAndPermute * Update resize segmentation label map with cv::INTER_NEAREST * Add Model Clone function for PaddleClas && PaddleDet && PaddleSeg * Add multi thread demo * Add python model clone function * Add multi thread python && C++ example * Fix bug * Update python && cpp multi_thread examples * Add cpp && python directory * Add README.md for examples * Delete redundant code * Create README_CN.md * Rename README_CN.md to README.md * Update README.md * Update README.md * Update VERSION_NUMBER * Update requirements.txt * Update README.md * update version in doc: * [Serving]Update Dockerfile (#1037) Update Dockerfile * Add license notice for RVM onnx model file (#1060) * [Model] Add GPL-3.0 license (#1065) Add GPL-3.0 license * PPOCR model support model clone * Update README.md * Update PPOCRv2 && PPOCRv3 clone code * Update PPOCR python __init__ * Add multi thread ocr example code * Update README.md * Update README.md * Update ResNet50_vd_infer multi process code * Add PPOCR multi process && thread example * Update README.md * Update README.md * Update multi-thread docs Co-authored-by: Jason <jiangjiajun@baidu.com> Co-authored-by: leiqing <54695910+leiqing1@users.noreply.github.com> Co-authored-by: heliqi <1101791222@qq.com> Co-authored-by: WJJ1995 <wjjisloser@163.com>
104 lines
4.2 KiB
C++
Executable File
104 lines
4.2 KiB
C++
Executable File
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "fastdeploy/fastdeploy_model.h"
|
|
#include "fastdeploy/vision/common/processors/transform.h"
|
|
#include "fastdeploy/vision/common/result.h"
|
|
|
|
#include "fastdeploy/vision/ocr/ppocr/classifier.h"
|
|
#include "fastdeploy/vision/ocr/ppocr/dbdetector.h"
|
|
#include "fastdeploy/vision/ocr/ppocr/recognizer.h"
|
|
#include "fastdeploy/vision/ocr/ppocr/utils/ocr_postprocess_op.h"
|
|
#include "fastdeploy/utils/unique_ptr.h"
|
|
|
|
namespace fastdeploy {
|
|
/** \brief This pipeline can launch detection model, classification model and recognition model sequentially. All OCR pipeline APIs are defined inside this namespace.
|
|
*
|
|
*/
|
|
namespace pipeline {
|
|
/*! @brief PPOCRv2 is used to load PP-OCRv2 series models provided by PaddleOCR.
|
|
*/
|
|
class FASTDEPLOY_DECL PPOCRv2 : public FastDeployModel {
|
|
public:
|
|
/** \brief Set up the detection model path, classification model path and recognition model path respectively.
|
|
*
|
|
* \param[in] det_model Path of detection model, e.g ./ch_PP-OCRv2_det_infer
|
|
* \param[in] cls_model Path of classification model, e.g ./ch_ppocr_mobile_v2.0_cls_infer
|
|
* \param[in] rec_model Path of recognition model, e.g ./ch_PP-OCRv2_rec_infer
|
|
*/
|
|
PPOCRv2(fastdeploy::vision::ocr::DBDetector* det_model,
|
|
fastdeploy::vision::ocr::Classifier* cls_model,
|
|
fastdeploy::vision::ocr::Recognizer* rec_model);
|
|
|
|
/** \brief Classification model is optional, so this function is set up the detection model path and recognition model path respectively.
|
|
*
|
|
* \param[in] det_model Path of detection model, e.g ./ch_PP-OCRv2_det_infer
|
|
* \param[in] rec_model Path of recognition model, e.g ./ch_PP-OCRv2_rec_infer
|
|
*/
|
|
PPOCRv2(fastdeploy::vision::ocr::DBDetector* det_model,
|
|
fastdeploy::vision::ocr::Recognizer* rec_model);
|
|
|
|
/** \brief Clone a new PPOCRv2 with less memory usage when multiple instances of the same model are created
|
|
*
|
|
* \return new PPOCRv2* type unique pointer
|
|
*/
|
|
std::unique_ptr<PPOCRv2> Clone() const;
|
|
|
|
/** \brief Predict the input image and get OCR result.
|
|
*
|
|
* \param[in] im The input image data, comes from cv::imread(), is a 3-D array with layout HWC, BGR format.
|
|
* \param[in] result The output OCR result will be writen to this structure.
|
|
* \return true if the prediction successed, otherwise false.
|
|
*/
|
|
virtual bool Predict(cv::Mat* img, fastdeploy::vision::OCRResult* result);
|
|
virtual bool Predict(const cv::Mat& img,
|
|
fastdeploy::vision::OCRResult* result);
|
|
/** \brief BatchPredict the input image and get OCR result.
|
|
*
|
|
* \param[in] images The list of input image data, comes from cv::imread(), is a 3-D array with layout HWC, BGR format.
|
|
* \param[in] batch_result The output list of OCR result will be writen to this structure.
|
|
* \return true if the prediction successed, otherwise false.
|
|
*/
|
|
virtual bool BatchPredict(const std::vector<cv::Mat>& images,
|
|
std::vector<fastdeploy::vision::OCRResult>* batch_result);
|
|
|
|
bool Initialized() const override;
|
|
bool SetClsBatchSize(int cls_batch_size);
|
|
int GetClsBatchSize();
|
|
bool SetRecBatchSize(int rec_batch_size);
|
|
int GetRecBatchSize();
|
|
|
|
protected:
|
|
fastdeploy::vision::ocr::DBDetector* detector_ = nullptr;
|
|
fastdeploy::vision::ocr::Classifier* classifier_ = nullptr;
|
|
fastdeploy::vision::ocr::Recognizer* recognizer_ = nullptr;
|
|
|
|
private:
|
|
int cls_batch_size_ = 1;
|
|
int rec_batch_size_ = 6;
|
|
};
|
|
|
|
namespace application {
|
|
namespace ocrsystem {
|
|
typedef pipeline::PPOCRv2 PPOCRSystemv2;
|
|
} // namespace ocrsystem
|
|
} // namespace application
|
|
|
|
} // namespace pipeline
|
|
} // namespace fastdeploy
|