Updated HyperLPR中文车牌识别安装(Windows7 x64, Python3.5版) (markdown)

master
syan 7 years ago
parent
commit
f4e8a55ed1
1 changed files with 10 additions and 3 deletions
  1. +10
    -3
      HyperLPR中文车牌识别安装(Windows7-x64,-Python3.5版).md

+ 10
- 3
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

Loading…
Cancel
Save