"example/01_gemm/gemm_dl_int4.cpp" did not exist on "e0d8806ca1cd8611d387f1fb441d3c9e92174ec5"
Commit 947470a3 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

fix error

parent 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% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment