4 Star 2 Fork 0

Arcment/慧眼-车牌号识别的创新研发

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
Arcment 提交于 2022-01-13 13:27 . update main.py.
# -*- coding: utf-8 -*-
from sys import argv, stderr
def main():
if len(argv) <= 1:
print("请输入启动模式(GUI/CLI模式)", file=stderr)
print("例如启动命令行模式,则输入:python main.py GUI")
elif argv[1].upper() == 'GUI':
# 图形化界面模式
from graphicsUserInterface import start
start()
elif argv[1].upper() == 'CLI':
# 命令行界面模式
from commandLineInterface import start
start()
else:
print("启动模式输入有误(GUI/CLI模式)", file=stderr)
print("例如启动命令行模式,则输入:python main.py GUI")
if __name__ == '__main__':
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Arcment/License-OCR.git
git@gitee.com:Arcment/License-OCR.git
Arcment
License-OCR
慧眼-车牌号识别的创新研发
master

搜索帮助