We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
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
感谢作者! 其他情况下都很不错 但是字幕只有单字的情况下大概率识别不出来? VSF 是有识别到并且输出了RGB图片的
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
这个丢失是因为识别到的文本置信度太低,导致被过滤了。可以添加text_score=0.4参数来调节。示例代码如下:
text_score=0.4
from rapid_videocr import RapidVideOCR extractor = RapidVideOCR(is_concat_rec=True, is_print_console=False, text_score=0.4) rgb_dir = "tiny" save_dir = "outputs" save_name = "a" # outputs/a.srt outputs/a.txt extractor(rgb_dir, save_dir, save_name=save_name)
详细参数,可参考RapidOCR docs
No branches or pull requests
感谢作者!
其他情况下都很不错 但是字幕只有单字的情况下大概率识别不出来?
VSF 是有识别到并且输出了RGB图片的
The text was updated successfully, but these errors were encountered: