提交 2ab0ba91 编写于 作者: L LDOUBLEV

delete debug code

上级 4ae833c5
......@@ -88,14 +88,9 @@ void CRNNRecognizer::Run(std::vector<std::vector<std::vector<int>>> boxes,
std::cout << str_res[i];
}
std::cout << "\tscore: " << score << std::endl;
auto box = boxes[i];
std::cout << "box: " << box[0][0] << " " << box[0][1] << " " << box[1][0]
<< " " << box[1][1] << " " << box[2][0] << " " << box[2][1]
<< " " << box[3][0] << " " << box[3][1] << " " << 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",
......@@ -130,10 +125,10 @@ void CRNNRecognizer::LoadModel(const std::string &model_dir) {
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;
......@@ -185,6 +180,6 @@ cv::Mat CRNNRecognizer::GetRotateCropImage(const cv::Mat &srcimage,
} else {
return dst_img;
}
}
}
} // namespace PaddleOCR
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册