提交 8d47ab6e 编写于 作者: M MissPenguin

add batch infer for cpp rec

上级 86e49817
...@@ -66,7 +66,6 @@ public: ...@@ -66,7 +66,6 @@ public:
// Load Paddle inference model // Load Paddle inference model
void LoadModel(const std::string &model_dir); void LoadModel(const std::string &model_dir);
// void Run(cv::Mat &img, std::vector<double> *times);
void Run(std::vector<cv::Mat> img_list, std::vector<double> *times); void Run(std::vector<cv::Mat> img_list, std::vector<double> *times);
private: private:
......
...@@ -51,7 +51,6 @@ public: ...@@ -51,7 +51,6 @@ public:
static cv::Mat GetRotateCropImage(const cv::Mat &srcimage, static cv::Mat GetRotateCropImage(const cv::Mat &srcimage,
std::vector<std::vector<int>> box); std::vector<std::vector<int>> box);
// 实现argsort功能
static std::vector<int> argsort(const std::vector<float>& array); static std::vector<int> argsort(const std::vector<float>& array);
}; };
......
...@@ -147,7 +147,6 @@ cv::Mat Utility::GetRotateCropImage(const cv::Mat &srcimage, ...@@ -147,7 +147,6 @@ cv::Mat Utility::GetRotateCropImage(const cv::Mat &srcimage,
} }
} }
// 实现argsort功能
std::vector<int> Utility::argsort(const std::vector<float>& array) std::vector<int> Utility::argsort(const std::vector<float>& array)
{ {
const int array_len(array.size()); const int array_len(array.size());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册