python
__Fang Wei__
这个作者很懒,什么都没留下…
展开
-
AttributeError: module 'scipy.misc' has no attribute 'toimage'
想将numpy矩阵保存成图片,出现如下错误,Traceback (most recent call last):File ".\demo2.py", line 29, in <module>sm.toimage(image_array).save(filename)AttributeError: module 'scipy.misc' has no attr...原创 2019-12-20 21:04:14 · 5392 阅读 · 0 评论 -
python入门笔记(一)
1、概述最近在学tensorflow,使用的是python语言,因为我会的语言比较多,所以,在没有学习python的情况下也能看得懂,并且也能写一些示例和爬虫代码。但是,总感觉,在继续学下去之前,有必要先花几天系统的学一下python。虽然编程语言是相通的,但是,每个语言都有自己的特色,磨刀不误砍柴工。2、python数据类型python主要内置对象类型如下表所示, 对象类型...原创 2018-07-04 22:12:33 · 732 阅读 · 0 评论 -
python入门笔记(二)
4、迭代器4.1、文件迭代器先来回顾一下上面讲过的文件的读取,我们先在程序根目录保存一个文本文件“wf.txt”,里面存的内容如下, 然后,我们写代码将其一行一行地读取出来并打印,>>> fd = open('wf.txt', 'r')>>> fd.readline()'wei\n'>>> fd.readli...原创 2018-07-04 22:25:02 · 562 阅读 · 0 评论 -
ValueError: Object arrays cannot be loaded when allow_pickle=False
Traceback (most recent call last): File "src/compare.py", line 130, in <module> main(parse_arguments(sys.argv[1:])) File "src/compare.py", line 41, in main images = load_and_align_da...原创 2019-05-07 20:21:53 · 5052 阅读 · 1 评论 -
安装pycocotools,Failed building wheel for pycocotools
pip安装pycocotools出错如下,Command "d:\Anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\wf\\AppData\\Local\\Temp\\pip-install-p8ep1dmz\\pycocotools\\setup.py';f=getattr(tokeniz...原创 2019-05-10 15:20:14 · 9124 阅读 · 3 评论 -
anaconda旧版本下载链接
https://repo.continuum.io/archive/原创 2019-06-13 22:23:29 · 1552 阅读 · 0 评论