加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.py 488 Bytes
一键复制 编辑 原始数据 按行查看 历史
chineseocr 提交于 2020-02-22 01:10 . add opencv dnn for ocr
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
config
@author: chineseocr
"""
ocrType = 'chinese'
ocrPath = 'models/ocr/{}/ocr.weights'.format(ocrType)
textPath = 'models/text/text.weights'
darkRoot ='darknet/libdarknet.so' ##darknet
TEXT_LINE_SCORE=0.7##text line prob
scale = 900##可动态修改 no care text.cfg height,width
maxScale = 1800
GPU=False ## gpu for darknet or cpu for opencv.dnn
anchors = '16,11, 16,16, 16,23, 16,33, 16,48, 16,68, 16,97, 16,139, 16,198, 16,283'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化