提交 947470a3 编写于 作者: L LDOUBLEV

fix error

上级 2ab0ba91
......@@ -89,8 +89,9 @@ void CRNNRecognizer::Run(std::vector<std::vector<std::vector<int>>> boxes,
}
std::cout << "\tscore: " << score << std::endl;
}
}
void CRNNRecognizer::LoadModel(const std::string &model_dir) {
void CRNNRecognizer::LoadModel(const std::string &model_dir) {
// AnalysisConfig config;
paddle_infer::Config config;
config.SetModel(model_dir + "/inference.pdmodel",
......@@ -125,10 +126,10 @@ void CRNNRecognizer::Run(std::vector<std::vector<std::vector<int>>> boxes,
config.DisableGlogInfo();
this->predictor_ = CreatePredictor(config);
}
}
cv::Mat CRNNRecognizer::GetRotateCropImage(
const cv::Mat &srcimage, std::vector<std::vector<int>> box) {
cv::Mat CRNNRecognizer::GetRotateCropImage(const cv::Mat &srcimage,
std::vector<std::vector<int>> box) {
cv::Mat image;
srcimage.copyTo(image);
std::vector<std::vector<int>> points = box;
......@@ -180,6 +181,6 @@ void CRNNRecognizer::Run(std::vector<std::vector<std::vector<int>>> boxes,
} else {
return dst_img;
}
}
}
} // namespace PaddleOCR
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册