本文主要是介绍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
再次<
这篇关于EAST installation的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!