TensorFlow/图片识别
图片识别库
执笔写回憶
人生苦短,才学Python!
展开
-
登录古诗文网,pytesseract图片验证码识别,最终获取我的收藏页面信息
# -*- coding: utf-8 -*-# !/usr/bin/env python# 登录古诗文网,图片验证码识别,最终获取我的收藏页面信息"""1、打开登录页面:https://so.gushiwen.cn/user/login.aspx2、输入用户名和密码3、下载验证码图片到本地,然后提示人工输入(或机器先识别,如果识别失败,则提示用户输入)4、登录成功,获取收藏页面信息:https://so.gushiwen.cn/user/collect.aspx"""import os.原创 2020-12-18 10:27:37 · 461 阅读 · 0 评论 -
Microsoft Visual C++ 14.0 is required解决方法
在用pycharm过程中,用pip去安装一些第三方包的时候会出现如下错误,缺少C++编译器,因为有些程序需要使用,没有C++接口会报错:一、直接下载对应版本的.whl文件,然后运行pip install xxx.whl进行安装二、按照提示去官网下载Visual Studio三、使用Microsoft Visual C++ Build Tools(推荐)官网:https://devblogs.microsoft.com/python/unable-to-find-vcvarsall-bat原创 2020-12-17 23:00:10 · 186 阅读 · 1 评论 -
python-pytesseract安装
1.windows上要安装tesseract-ocr-w64-setup-v5.0.0.20190623.exe程序,记住安装地址设置环境变量下载地址:https://digi.bib.uni-mannheim.de/tesseract/2.linux上要安装tesseract-ocr库,sudo add-apt-repository ppa:alex-p/tesseract-ocr3.pip install pytesseract尝试运行demo:import pytessera原创 2020-12-17 16:07:34 · 624 阅读 · 0 评论 -
解决Tensorflow 使用时cpu编译不支持警告:that this TensorFlow binary was not compiled to use: AVX AVX2
有两种解决办法:1、忽略这个警告(用第二个):import os # os.environ["TF_CPP_MIN_LOG_LEVEL"]='1' # 这是默认的显示等级,显示所有信息 os.environ["TF_CPP_MIN_LOG_LEVEL"]='2' # 只显示 warning 和 Error # os.environ["TF_CPP_MIN_LOG_LEVEL...原创 2018-08-20 16:31:56 · 11624 阅读 · 0 评论