当前位置:   article > 正文

python 使用 百度智能云 进行文字识别_python 百度智慧云

python 百度智慧云

官方文档


车牌

from aip import AipOcr

def car(file_path):
    APP_ID = '18021091'
    API_KEY = 'B1jhBRDptnM7diORcYHXAmfQ'
    SECRET_KEY = '9HddR7LxTpEe3zhRTTU41DwbSKEOkQN0'

    aip_orc = AipOcr(APP_ID, API_KEY, SECRET_KEY)
    file_path = file_path

    def get_file_content(file_path):
        with open(file_path, 'rb') as f:
            return f.read()

    options = {
   }
    options['multi_detect'] = 'true'

    result = aip_orc.licensePlate(get_file_content(file_path), options)

    for i in range(len
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/539439
推荐阅读
相关标签
  

闽ICP备14008679号