python
AllyLi0224
这个作者很懒,什么都没留下…
展开
-
labelme安装教程
win10,双击exe可执行文件:Anaconda3-2020.11-Windows-x86_64# python3conda create --name=labelme python=3.6 #可根据系统自带的略有修改conda activate labelmepip install labelme可能遇到的问题,见上一博客!原创 2020-11-27 18:10:29 · 271 阅读 · 0 评论 -
问题:the current numy installation failed to pass check due to a bug in the windows runtime.
win10遇到问题:the current numy installation failed to pass check due to a bug in the windows runtime。解决办法:pip install numpy==1.19.0原创 2020-11-27 18:05:54 · 195 阅读 · 0 评论 -
Python图像处理库:Pillow 初级教程
翻译 http://pillow.readthedocs.org/en/latest/handbook/tutorial.htmlPillow由PIL而来,所以该导入该库使用import PIL本文相关的代码:https://github.com/445141126/pillow_exampleImage类Pillow中最重要的类就是Image,该类存在于同名的模块原创 2017-06-07 09:38:41 · 795 阅读 · 0 评论 -
centos中python升级导致yum命令无法使用
问题:no module named yum解决办法:查找yum和 yum-updatest文件,并编辑此py文件[root@develop local]# which yum/usr/bin/yum[root@develop local]# vi /usr/bin/yum[root@develop local]# vi /usr/bin/yum-updatest将#!/usr原创 2017-06-07 09:46:37 · 1006 阅读 · 0 评论 -
centos安装python
1 centos安装python2.75 (centos6.3) 1 切换到root用户 2 下载tar包 [python] view plain copy print?wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz 3转载 2017-06-07 09:58:23 · 430 阅读 · 0 评论 -
使用pyspider爬虫爬取百度图片
第一步:安装pyspider:pip install pyspider。第二部:防火墙:firewall-cmd --zone=public --add-port=5000/tcp --permanent测试:firewall-cmd --reload第三部:运行命令使之跑起来:前段运行:pyspider all。后端运行:nohup pyspider ...原创 2017-10-31 18:41:22 · 1009 阅读 · 0 评论 -
使用python获取csv文本的某行或某列数据
站长用Python写了一个可以提取csv任一列的代码,欢迎使用。Github链接csv是Comma-Separated Values的缩写,是用文本文件形式储存的表格数据,比如如下的表格:就可以存储为csv文件,文件内容是:No.,Name,Age,Score1,Apple,12,982,Ben,13,973,Celia,14,964,Dave,15,95转载 2018-01-22 09:51:04 · 25348 阅读 · 0 评论 -
人脸验证流程梳理
1、下载dlibgit clone https://github.com/davisking/dlib.git2、编译安装dlibcd dlibmkdir build && cd build && cmake .. && make -j8sudo make installsudo python setup.py install3、安装依赖yum install sc原创 2018-01-19 18:48:29 · 744 阅读 · 0 评论 -
numpy源码安装
如果使用yum install numpy安装不成功就使用如下方法。安装相关工具:yum install wgetyum install unzipyum install gccyum install python-devel下载numpy源码并解压:wget http://jaist.dl.sourceforge.net/project/numpy/NumPy/1.9.0/numpy-1.9.0...原创 2018-05-29 10:36:15 · 6491 阅读 · 0 评论 -
python代码运行时间统计
import timestart = time.time()run_fun()end = time.time()print end-start原创 2019-01-07 19:43:51 · 806 阅读 · 3 评论 -
centos安装python3
不建议卸载python2 可能会导致系统内其他软件无法使用1.下载 wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0a1.tar.xz2. 解压 tar xvf Python-3.6.0a1.tar.xz3.编译安装 进入目录 ./configure make && make ...转载 2019-01-15 20:42:42 · 226 阅读 · 0 评论 -
python对路径的遍历和操作
在读文件的时候往往需要遍历文件夹,python的os.path包含了很多文件、文件夹操作的方法。os.path.abspath(path) #返回绝对路径os.path.basename(path) #返回文件名os.path.commonprefix(list) #返回多个路径中,所有path共有的最长的路径。os.path.dirname(path) #返回文件路径os.p...原创 2019-02-12 18:05:17 · 1002 阅读 · 0 评论 -
python注释
python常用单行注释是#。常用多行注释是三对单引号''' '''。单行注释快捷键‘Ctr + /’。原创 2019-02-14 10:43:33 · 222 阅读 · 0 评论 -
ImportError: numpy.core.multiarray failed to import
原因:numpy版本太低,需要安装更高版本的安装包。安装过程参照:https://blog.csdn.net/Allyli0022/article/details/80493056原创 2019-05-20 17:02:04 · 376 阅读 · 0 评论 -
使用直方图及其部分空间特性的模糊对比
#coding=from PIL import Imagedef calculate(image1,image2): g = image1.histogram() s = image2.histogram() assert len(g) == len(s),"error" data = [] for index in range(0,len(g)): if g[index]原创 2017-06-05 17:08:16 · 438 阅读 · 0 评论 -
两幅图像间的精确对比
#coding=from PIL import Imageif __name__ == "__main__": image1 = Image.open("009.png") image2 = Image.open("010.png") width, height = image1.size width_s, height_s = image2.size for h in r原创 2017-06-05 17:06:57 · 1618 阅读 · 0 评论 -
link error:Cannot Open File 'python27_d.lib'
使用C调用Python函数或解释器时,在添加了Include Directories和Library Directories等配置后,仍然编译错误:"LINK : fatal error LNK1104: cannot open file 'python27_d.lib'".只有MS_NO_COREDLL或Py_NO_ENABLE_SHARED被定义了,那么#ifdef MS_COREDL原创 2016-12-28 13:55:17 · 2312 阅读 · 0 评论 -
unbuntu pkg_resources.DistributionNotFound: The 'pip==1.5.4' distribution was not found ...
问题:unbuntu pkg_resources.DistributionNotFound: The 'pip==1.5.4' distribution was not found and is required by the application解决:wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo pytho原创 2017-02-06 17:10:49 · 8316 阅读 · 3 评论 -
import requests 错误解决
一开始使用 sudo apt-get install python-requests,但安装失败;随后使用 pip install requests,安装成功。原因未知。原创 2017-02-08 17:53:46 · 4979 阅读 · 0 评论 -
WindowsError: [Error 32]的问题和WindowsError: [Error 183]的问题
Traceback (most recent call last): File "****", line *, in os.rename(old,new)WindowsError: [Error 32]def write_worker(q_out, fname, working_dir): pre_time = time.time() count = 0原创 2017-02-17 17:08:58 · 5041 阅读 · 0 评论 -
mxnet由resnet换向alexnet时候出现问题
调试参数解决:import mxnet as mxdef get_symbol(num_classes, **kwargs): input_data = mx.symbol.Variable(name="data") # stage 1 conv1 = mx.symbol.Convolution( data=input_data, kernel=(1原创 2017-03-01 15:00:56 · 1231 阅读 · 4 评论 -
gpu问题
原因是虽然我电脑有两块GPU,但是只能用独立的原创 2017-03-01 15:09:58 · 833 阅读 · 0 评论 -
mxnet im2re.py
python im2rec.py --list True --exts .jpg --exts .jpeg --recursive True 存储路径 图像路径python im2rec.py --resize 480 --quality 95 --num-thread 16 list路径 图像路径# -*- coding: utf-8 -*-from __future__ impor原创 2017-02-23 14:54:17 · 1787 阅读 · 0 评论 -
import modle error cv2
sudo apt-get install build-essential libgtk2.0-dev libavcodec-dev libavformat-dev libjpeg62-dev libswscale-dev libjasper-devsudo apt-get install python-dev python-numpy libtbb2 libtbb-dev libjpe原创 2017-02-23 15:49:33 · 806 阅读 · 1 评论 -
cv2
linux: cv2.sowindows: cv2.pyd需要从相应文件内拷贝到另一个文件原创 2017-02-23 15:52:41 · 631 阅读 · 1 评论 -
mxnet中.rec数据生成
原创 2017-03-03 09:55:13 · 1631 阅读 · 3 评论 -
windos =>SyntaxError: invalid syntax
在windows环境下出现安装错误,提示 File "", line 1 pip install numpy ^SyntaxError: invalid syntax在cmd命令行里启动与安装,因为在Python中无法运行。原创 2017-03-22 15:19:18 · 1876 阅读 · 0 评论 -
File "xxx.py", line 8 SyntaxError: Non-ASCII character '\xe8' in file xxx.py
使用网上某个Python程序,编译时报错: File "xxx.py", line 8 SyntaxError: Non-ASCII character '\xe8' in file xxx.py on line 8, but no encoding declared; see http://www.python.org/peps/pep-0263.html转载 2017-04-11 15:26:37 · 4909 阅读 · 0 评论 -
AttributeError: 'module' object has no attribute 'text_format'
问题: pb2.text_format.Merge(f.read(), self.solver_param) AttributeError: 'module' object has no attribute 'text_format'解决办法:pip install protobuf==2.6.0分析: 使用命令进行安装的时候,版本没有达到工程所需的,所以需要升级原创 2017-04-28 10:52:50 · 4164 阅读 · 0 评论 -
python及其依赖安装
Download Miniconda 2.7 64-bit Windows installer from Miniconda website. Install for all users and add Python to PATH (through installer).Run the following commands from elevated command prompt:原创 2016-12-14 08:53:05 · 2837 阅读 · 0 评论