上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: ```##pip install pywin32import win32api,win32con ##提醒OK消息框win32api.MessageBox(0, "这是一个测试提醒OK消息框", "提醒",win32con.MB_OK) ##是否信息框win32api.MessageBox(0, "这是一个测试是否信息框", "提醒",win32con.MB_YESNO) ##说明信息框... 阅读全文
posted @ 2020-02-21 23:52 enumx 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: ```apt install python-pip //安装pip pip --version //查看pip的版本信息 pip install opencv-python //安装opencv-python``````# -- coding:utf-8 -- import cv2cap = cv... 阅读全文
posted @ 2020-02-21 21:01 enumx 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 移动端下载一个工具:IP摄像头(app) Android的下载地址:http://app.mi.com/details?id=com.shenyaocn.android.WebCam 下载安装后,打开app后,点击下方的“打开IP摄像头服务器”(连上wifi,确保电脑与手机处在同一局域网内)。 然后 阅读全文
posted @ 2020-02-21 19:11 enumx 阅读(2399) 评论(0) 推荐(0) 编辑
摘要: ```# -*- coding: utf-8 -*-"""Created on Thu Jun 22 16:44:27 2017@author: sakurai""" import numpy as npimport cv2import screeninfo if __name__ == '__main__': screen_id = 2 is_color = False #... 阅读全文
posted @ 2020-02-21 18:06 enumx 阅读(735) 评论(0) 推荐(0) 编辑
摘要: python的版本及依赖的库的安装 对后台窗口截图 截图整个桌面 阅读全文
posted @ 2020-02-21 17:26 enumx 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 我不知道大家是不是和我一样是用pip install tensorflow安装的tensorflow库,但是使用的时候,却会显示: Your CPU supports instructions that this TensorFlow binary was not compiled to use: 阅读全文
posted @ 2020-02-21 12:01 enumx 阅读(1262) 评论(0) 推荐(0) 编辑
摘要: 文章目录: 一、警告原因分析 二、解决方法 最近在使用tensorflow gpu的时候总是报警告,就我这强迫症能够忍他吗,no!绝对不能忍!!! 我的环境: cudnn=7.0 cuda=9.0 tensorflow gpu=1.8 或 1.9 或 1.10.0 或 1.11.0 在上面的这个环境 阅读全文
posted @ 2020-02-21 04:11 enumx 阅读(1287) 评论(0) 推荐(0) 编辑
摘要: 镜像设置 方法1:TUNA 提供了 Anaconda 仓库的部分镜像,运行以下命令即可: 方法2:修改用户目录下的’.condarc’文件添加镜像: vim ~/.condar 修改'.condarc' 文件 \ 修改内容如下,可直接使用ctrl + insert 快捷键复制 注意:其他仓库可查看A 阅读全文
posted @ 2020-02-21 01:21 enumx 阅读(1922) 评论(0) 推荐(0) 编辑
摘要: ```from ctypes import *import osimport win32con,win32clipboard aString=windll.user32.LoadImageW(0,"new.bmp",win32con.IMAGE_BITMAP,0,0,win32con.LR_LOADFROMFILE)print(aString)if aString !=0: ## 由于图片编码... 阅读全文
posted @ 2020-02-20 20:01 enumx 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 需要安装pywin32,pillow 依赖包 阅读全文
posted @ 2020-02-20 19:50 enumx 阅读(769) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页