"git@developer.sourcefind.cn:gaoqiong/flash-attention.git" did not exist on "5a3e6ebf95d0a11617a46567bb311397e1ec772d"
Unverified Commit ac3768a6 authored by littletomatodonkey's avatar littletomatodonkey Committed by GitHub
Browse files

fix cpp order (#2948)

parent 0ae041e2
......@@ -25,8 +25,9 @@ void CRNNRecognizer::Run(std::vector<std::vector<std::vector<int>>> boxes,
std::cout << "The predicted text is :" << std::endl;
int index = 0;
for (int i = boxes.size() - 1; i >= 0; i--) {
for (int i = 0; i < boxes.size(); i++) {
crop_img = GetRotateCropImage(srcimg, boxes[i]);
if (cls != nullptr) {
crop_img = cls->Run(crop_img);
}
......
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