We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are two bugs 64 to 72,69 line needs a '',"
model = DB(modelPath=args.model, inputSize=[args.width, args.height], binaryThreshold=args.binary_threshold, polygonThreshold=args.polygon_threshold, maxCandidates=args.max_candidates, unclipRatio=args.unclip_ratio backendId=args.backend, targetId=args.target )
83 to 85,the score is a float in line 85
print('{} texts detected.'.format(len(results[0]))) for idx, (bbox, score) in enumerate(zip(results[0], results[1])): print('{}: {} {} {} {}, {:.2f}'.format(idx, bbox[0], bbox[1], bbox[2], bbox[3], score[0]))
The text was updated successfully, but these errors were encountered:
Thanks for locating the bugs! You are welcome to make a pull request to fix it.
Sorry, something went wrong.
Hi Tong @the-star-sea, it would be nice if you could submit a PR to fix this bug.
Some potentially useful information: CPP demo of DB model
ok.I will do it today
zihaomu
Successfully merging a pull request may close this issue.
There are two bugs
64 to 72,69 line needs a '',"
83 to 85,the score is a float in line 85
The text was updated successfully, but these errors were encountered: