opencv-python-補充資料

opencv-python-補充資料

opencv-python-補充資料

 

 

OCR using tesseract and Python on Windows

 

windows 下載的位置在此 

也可以將img 存成檔案,透過以下的方法辨識

httpsss://www.youtube.com/watch?v=Rb93uLXiTwA

 

如果加上中文辨識功能,請下載字庫資料

httpsss://github.com/tesseract-ocr/tesseract/wiki/Data-Files

 

 

 

解決 ImportError: cannot import name ‘abs’ 導入tensorflow報錯

ImportError: cannot import name ‘abs’
原因:
protobuf和tensorflow發生了衝突

解決方法:
刪除tensorflow所有模塊(包括-gpu)

pip uninstall tensorflow
刪除protobuf

pip uninstall protobuf

重新安裝tensorflow

pip install tensorflow==1.8.01