
Python
Python
Schuyler_yuan
静听魔筝看花落,
穿着拖鞋抱着黄瓜啃
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python:json文件类型
JSON和XML都是互联网上数据交换的主要载体。在JSON出现之前,大家一直用XML来传递数据。因为XML是一种纯文本格式,所以它适合在网络上交换数据。XML本身不算复杂,但是,加上DTD、XSD、XPath、XSLT等一大堆复杂的规范以后,任何正常的软件开发人员碰到XML都会感觉头大了,最后大家发现,即使你努力钻研几个月,也未必搞得清楚XML的规范。于是,道格拉斯·克罗克福特(Douglas C...原创 2019-12-09 10:36:27 · 201 阅读 · 0 评论 -
Python:pkl文件类型
pkl格式文件是python用于保存文件用的,一般用来存储图像数据集,有字典类型、列表类型及其他。怎么使用或者打开这类文件呢?如果在打开文件的时候用的是r,r是用来打开文本类型文件的,我要打开的是二进制类型的文件,需要用rb。因为文件呢主要分为文本类型的和二进制类型这两种,在用的时候要看打开的文件是什么类型的。# -*- coding: UTF8 -*-# cPickle是pyt...原创 2019-12-09 09:33:35 · 1352 阅读 · 0 评论 -
Python:tuple
待更新原创 2019-06-21 18:22:55 · 155 阅读 · 0 评论 -
Python:list
待更新原创 2019-06-21 18:22:24 · 108 阅读 · 0 评论 -
Python:Dict
待更新原创 2019-06-21 18:20:30 · 174 阅读 · 0 评论 -
Python:zip函数
待更新原创 2019-06-21 16:48:28 · 114 阅读 · 0 评论 -
数据增强(Data Augmentation)方法总结
1. 图像分类任务2. 目标检测任务参考:https://blog.youkuaiyun.com/xuluohongshang/article/details/79000951待更新原创 2019-06-11 15:12:16 · 2749 阅读 · 0 评论 -
Python基础语法
待更新原创 2019-06-11 12:21:40 · 99 阅读 · 0 评论 -
Python:time
待更新原创 2019-06-11 12:21:00 · 124 阅读 · 0 评论 -
Python:colorsys
待更新原创 2019-06-11 12:20:11 · 1194 阅读 · 2 评论 -
Python:set
待更新原创 2019-06-21 18:55:53 · 226 阅读 · 0 评论 -
Python:下划线的含义
待更新原创 2019-06-21 19:04:13 · 158 阅读 · 0 评论 -
Python:创建目录
参考:https://www.cnblogs.com/monsteryang/p/6574550.html待更新原创 2019-07-29 17:24:52 · 154 阅读 · 0 评论 -
Python:自动给数字前面补零
参考:https://www.cnblogs.com/zhanglianbo/p/6202683.html待更新原创 2019-07-29 17:12:55 · 1539 阅读 · 0 评论 -
Python:自增运算
参考:https://www.cnblogs.com/lovemdx/archive/2012/05/11/2496660.html待更新原创 2019-07-29 17:08:19 · 1103 阅读 · 0 评论 -
Python:string字符串
参考:https://www.runoob.com/python/python-strings.html待更新原创 2019-07-29 17:00:40 · 164 阅读 · 0 评论 -
Python:按帧提取视频中的图片
实现代码如下,import osimport sysimport cv2import timevideo_file = sys.argv[1]if len(video_file) == 0: print('video_file is empty, check input parameter please.') sys.exit(0)if not os.path.exis...原创 2019-07-29 14:51:24 · 1299 阅读 · 0 评论 -
Python:安装opencv-python
系统中有多版本的 python 共存时,使用 pip 安装 opencv-python ,需要指定对应的 python 版本。如下,sudo /home/xxx/anaconda3/bin/python -m pip install opencv-python原创 2019-07-29 11:37:08 · 206 阅读 · 0 评论 -
Python:pip的安装、使用和升级
使用 pip 的常用命令,如下,pip install xxx 使用pip安装包;pip uninstall xxx 使用pip卸载包;pip list 查看已安装的包;pip install --upgrade xxx 更新安装包。pip i...原创 2019-07-12 14:32:10 · 224 阅读 · 0 评论 -
Python:os
待更新原创 2019-06-20 15:14:57 · 202 阅读 · 0 评论 -
Python:sys
待更新原创 2019-06-20 15:13:56 · 309 阅读 · 0 评论 -
Python:numpy
待更新原创 2019-05-21 11:24:56 · 161 阅读 · 0 评论 -
Python:filterpy
待更新原创 2019-05-21 11:25:13 · 1665 阅读 · 0 评论 -
Python:PIL
待更新原创 2019-05-22 16:57:22 · 154 阅读 · 0 评论 -
Python:命令行参数
1. argparse待更新2. getopt 模块参考:https://www.runoob.com/python/python-command-line-arguments.html3. sys.argv[]待更新原创 2019-05-22 16:58:07 · 181 阅读 · 0 评论 -
Python:glob
待更新原创 2019-05-22 16:58:20 · 219 阅读 · 0 评论 -
Python:scikit-image(skimage)
待更新原创 2019-05-21 11:25:29 · 485 阅读 · 0 评论 -
Python:matplotlib
semilogy函数参考:https://blog.youkuaiyun.com/pipisorry/article/details/40005163http://www.zilly.cn/index.php/archives/136/待更新原创 2019-05-21 11:24:47 · 148 阅读 · 0 评论 -
Python:numba
待更新原创 2019-05-21 11:25:06 · 920 阅读 · 0 评论 -
Python:re
待更新原创 2019-05-31 11:03:00 · 204 阅读 · 0 评论 -
Python:scipy
Scipy是一个专门用于科学计算的常用库,需要用numpy作为scipy的基础,同时也是用numpy来进行科学计算的。参考链接:https://blog.youkuaiyun.com/u011302399/article/details/83684925...原创 2019-10-15 10:39:12 · 362 阅读 · 0 评论 -
Python:pandas
待更新原创 2019-05-31 11:07:05 · 138 阅读 · 0 评论 -
Python:subprocess
待更新原创 2019-06-20 14:58:48 · 122 阅读 · 0 评论 -
Python:装饰器
待更新原创 2019-06-14 17:15:28 · 151 阅读 · 0 评论 -
Python:lambda表达式
待更新原创 2019-06-14 15:56:28 · 166 阅读 · 0 评论 -
Python:异常处理
raise语句原创 2019-06-13 19:01:57 · 170 阅读 · 0 评论 -
Python:struct
待更新原创 2019-06-02 10:30:00 · 184 阅读 · 0 评论 -
Python:scikit-learn(sklearn)
待更新原创 2019-05-29 18:06:19 · 161 阅读 · 0 评论 -
Python:cv2
待更新原创 2019-06-12 17:00:08 · 1565 阅读 · 0 评论 -
Python:random
待更新原创 2019-06-12 16:13:54 · 644 阅读 · 0 评论