From f4e8a55ed1e727ce96231e04bd6e067fbce564ba Mon Sep 17 00:00:00 2001 From: syan Date: Thu, 25 Jan 2018 10:50:52 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20HyperLPR=E4=B8=AD=E6=96=87=E8=BD=A6?= =?UTF-8?q?=E7=89=8C=E8=AF=86=E5=88=AB=E5=AE=89=E8=A3=85(Windows7=20x64,?= =?UTF-8?q?=20Python3.5=E7=89=88)=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...牌识别安装(Windows7-x64,-Python3.5版).md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/HyperLPR中文车牌识别安装(Windows7-x64,-Python3.5版).md b/HyperLPR中文车牌识别安装(Windows7-x64,-Python3.5版).md index bc706b7..fdd614f 100644 --- a/HyperLPR中文车牌识别安装(Windows7-x64,-Python3.5版).md +++ b/HyperLPR中文车牌识别安装(Windows7-x64,-Python3.5版).md @@ -89,7 +89,14 @@ for filename in os.listdir(parent): cv2.waitKey(0) -* 运行 batch_py3.py - -* 若缺乏包,请在"File"-"Setting"-"Project: HyperLpr"-"Project Interpreter"使用上述安装的Anaconda,Python 3.5 +``` +* 运行 batch_py3.py,发现"hyperlpr_py3/Segmentation.py"第113行有错误 +``` +median = (data[size//2]+data[size//2-1])/2 +``` +修改为 +``` +median = (data[size//2]+data[size//2-1])//2 +``` +* 若缺乏包,请在"File"-"Setting"-"Project: HyperLpr"-"Project Interpreter"使用上述安装的Anaconda,Python 3.5 \ No newline at end of file