|
@@ -94,13 +94,6 @@ for filename in os.listdir(parent): |
|
|
cv2.waitKey(0) |
|
|
cv2.waitKey(0) |
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
* 运行 batch_py3.py,发现"hyperlpr_py3/Segmentation.py"第113行有错误 |
|
|
|
|
|
``` |
|
|
|
|
|
median = (data[size//2]+data[size//2-1])/2 |
|
|
|
|
|
|
|
|
* 运行 batch_py3.py |
|
|
|
|
|
|
|
|
``` |
|
|
|
|
|
修改为 |
|
|
|
|
|
``` |
|
|
|
|
|
median = (data[size//2]+data[size//2-1])//2 |
|
|
|
|
|
``` |
|
|
|
|
|
* 若缺乏包,请在"File"-"Setting"-"Project: HyperLpr"-"Project Interpreter"使用上述安装的Anaconda,Python 3.5 |
|
|
* 若缺乏包,请在"File"-"Setting"-"Project: HyperLpr"-"Project Interpreter"使用上述安装的Anaconda,Python 3.5 |