gpt4 book ai didi

python - 在 python tesserocr pkg 中设置白名单

转载 作者:行者123 更新时间:2023-12-01 01:40:41 28 4
gpt4 key购买 nike

我在 tessdata 中创建了一个配置文件来设置白名单。我也知道如何在命令行 shell 中使用它。但我不知道如何在 python 中使用 tesserocr 包。函数tesserocr.image_to_text()白名单好像没有参数。

最佳答案

好像image_to_text不接受白名单参数,请使用SetVariable,参见下面通过tesseroct基础api设置白名单的解决方案:

api = tesserocr.PyTessBaseAPI()
api.ReadConfigFile('digits')
# Consider having string with the white list chars in the config_file, for instance: "0123456789"
while_list = open(config_file_path).read()
api.SetVariable("tessedit_char_whitelist", while_list)

关于python - 在 python tesserocr pkg 中设置白名单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51929916/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com