opencv
fight for survive
这个作者很懒,什么都没留下…
展开
-
【解决方案】from .cv2 import * ImportError: DLL load failed: 找不到指定的模块。
一、背景:我自己写了一个python脚本,要放到远程电脑上用,怎么办?参考网上的做法,我应该按照python installer,打包发布;但是没有成功;后面再研究下,如果有进展我再更新。退而求其次,我只能把我本地的开发环境搬到那台远程电脑上运行了。按照我的设想,应该是非常轻松愉快的,结果却不是这样,我遇到了import cv2报错的问题,在网上找了多种解决方案都无效,好在最后都解决了...原创 2019-03-30 07:34:35 · 7424 阅读 · 0 评论 -
【解决方案】import cv2 读取带有中文的文件或者路径的方法
import cv2import numpy as np#-*- coding: utf-8 -*- def main(): img=cv2.imdecode(np.fromfile(r"D:\AI\LicensePlateRec\test\渝F36680\车.jpg",dtype=np.uint8),-1) cv2.imshow('image',img) cv2...原创 2019-03-30 07:37:42 · 564 阅读 · 0 评论 -
【AI】破解 微信跳一跳小游戏,成为好友圈里面的顶级高手
参考文献:https://github.com/Prinsphield/Wechat_AutoJumphttps://zhuanlan.zhihu.com/p/326363291、安装python 环境,推荐安装Anaconda,下载地址:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda1)下载了32位的Anac...原创 2019-03-30 07:39:41 · 490 阅读 · 0 评论