EAST installation

code地址:https://github.com/argman/EAST

1、python3下安转opencv

2、安装tensorflow

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0-cp34-cp34m-linux_x86_64.whl
#或者,使用源
pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0-cp34-cp34m-linux_x86_64.whl

2、运行

python eval.py 
--test_data_path=/home/ly/EAST-master/demo_images/ --checkpoint_path=/home/ly/EAST-master/resnet_v1_50.ckpt --output_path=/out/

报错,没有shapely

pip install shapely

报错,没有scipy

pip install scipy
error: library dfftpack has Fortran sources but no Fortran compiler found

参考http://www.cnblogs.com/cj695/p/5216028.html

sudo apt-get install gfortran

再次

pip install scipy

等好久安装OK…
再次python eval.py
报错,没有matplotlib

pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ matplotlib

测试结果:

EAST installation_第1张图片

你可能感兴趣的:(Deep,Learning)