os.walk|图片数据集
该函数的功能:遍历指定文件夹下的所有【路径】【文件夹】【文件名】
'''
os.walk(top[, topdown=True[, onerror=None[, followlinks=False]]])
参数:
top -- 是你所要遍历的目录的地址, 返回的是一个三元组(root,dirs,files)。
root 所指的是当前正在遍历的这个文件夹的本身的地址
dirs 是一个 list ,内容是该文件夹中所有的目录的名字(不包括子目录)
files 同样是 list , 内容是该文件夹中所有的文件(不包括子目录)
topdown --可选,为 True,则优先遍历 top 目录,否则优先遍历 top 的子目录(默认为开启)。如果 topdown 参数为 True,walk 会遍历top文件夹,与top 文件夹中每一个子目录。
onerror -- 可选,需要一个 callable 对象,当 walk 需要异常时,会调用。
followlinks -- 可选,如果为 True,则会遍历目录下的快捷方式(linux 下是软连接 symbolic link )实际所指的目录(默认关闭),如果为 False,则优先遍历 top 的子目录。
'''
函数定义
#查看root的所有值【root代表当前遍历文件夹的路径】
for root,dirs,files in os.walk(".",topdown=True):
print(os.getcwd())
print(root) '''
说明:topdown = True 从最上层开始遍历 得到当前文件夹下的所有文件夹 返回结果: D:\python\TensorFlow\1_data_input_create\4.3 ##1.当前工作目录一直没有改变(脚本所在目录)
. ##遍历顶层文件夹【'.'代表当前工作目录【一层】】
D:\python\TensorFlow\1_data_input_create\4.3 ##1.当前工作目录一直没有改变(脚本所在目录)
.\mnist_digits_images ##遍历到子文件【二层】
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\0 ##遍历到子文件夹【三层】,【三层】有10个文件夹,一次遍历
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\1
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\2
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\3
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\4
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\5
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\6
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\7
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\8
D:\python\TensorFlow\1_data_input_create\4.3
.\mnist_digits_images\9 '''
查看所有root
for root,dirs,files in os.walk(".",topdown=True):
print(dirs)
#
'''
['mnist_digits_images'] ###指定目录下,只有一个文件夹【二层】
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] ###正在遍历的文件夹有10个文件夹【三层】
[] ### 文件夹0 中没有文件夹
[] ### 文件夹1 中没有文件夹
[]
[]
[]
[]
[]
[]
[]
[]
'''
查看所有dirs
for root,dirs,files in os.walk(".",topdown=True):
print(files) '''
['4.3_data_input_create.py', 'os模块.py', '配套知识点.py'] ###【一层】所有文件
[] ###【二层】没有文件
['0.bmp', '1.bmp', '10.bmp', '100.bmp', '101.bmp', '102.bmp', '103.bmp', '104.bmp',
###【三层】文件较多,只列举了文件夹0中的文件,文件夹1的文件类似
查看所有files
##文件名和路径组合成文件名【绝对路径】,路径分离出当前文件夹名
for (dirpath,dirsname,filesname) in os.walk('mnist_digits_images',topdown=True):
for filename in filesname:
filename_path = os.sep.join([dirpath,filename])
print(filename_path)
time.sleep(1)
dir_name = dirpath.split('\\')[-1]
print(dir_name)
time.sleep(12)
'''
第一次循环
mnist_digits_images\0\0.bmp ##文件的绝对路径
0 ##当前文件名
第二次循环
mnist_digits_images\0\1.bmp
0
'''
文件绝对路径和提取遍历位置的文件名
##将字符串类型的文件名称,映射成数字类型
##去重排序:set()--无序不重复集合类型 sorted()排序,默认升序 list()变成列表形式
lab = list(sorted(set(labelsnames)))
'''
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
'''
##映射成数字
labdict = dict(zip(lab,list(range(len(lab)))))
'''
{'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9} 补充:
>>>a = [1,2,3]
>>> b = [4,5,6]
>>> c = [4,5,6,7,8]
>>> zipped = zip(a,b) # 打包为元组的列表
[(1, 4), (2, 5), (3, 6)]
>>> zip(a,c) # 元素个数与最短的列表一致
[(1, 4), (2, 5), (3, 6)]
>>> zip(*zipped) # 与 zip 相反,*zipped 可理解为解压,返回二维矩阵式
[(1, 2, 3), (4, 5, 6)]
''' labels = [labdict[i] for i in labelsnames]
'''
列表解析:通过遍历所有字符串类型的文件夹名称【'0','0',````['9']】,通过字典取值,获得数字类型的文件名[0,0,`````,9]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ``````9]每个数字都对应一张图片
'''
将字符串类型的文件名称,映射成数字类型
a = np.array(labelsnames)
'''
将列表形式转化成数组形式
['0' '0' '0' ... '9' '9' '9']
'''
b = shuffle(np.asarray(lfilenames),np.asarray(labels))
'''
from sklearn.utils import shuffle 乱序
[array(['mnist_digits_images\\8\\292.bmp',
'mnist_digits_images\\1\\668.bmp',
'mnist_digits_images\\6\\121.bmp', ...,
'mnist_digits_images\\7\\821.bmp',
'mnist_digits_images\\6\\308.bmp',
'mnist_digits_images\\7\\286.bmp'], dtype='<U29'), array([8, 1, 6, ..., 7, 6, 7])] '''
转换成数组,并且乱序
os.walk|图片数据集的更多相关文章
- DCGAN增强图片数据集
DCGAN增强图片数据集 1.Dependencies Python 3.6+ PyTorch 0.4.0 numpy 1.14.1, matplotlib 2.2.2, scipy 1.1.0 im ...
- python os.walk()
os.walk()返回三个参数:os.walk(dirpath,dirnames,filenames) for dirpath,dirnames,filenames in os.walk(): 返回d ...
- os.walk()
os.walk() 方法用于通过在目录树种游走输出在目录中的文件名,向上或者向下. walk()方法语法格式如下: os.walk(top[, topdown=True[, onerror=None[ ...
- [py]os.walk爬目录&sys.argv灵活获取参数
1, 遍历目录 os.walk('/tmp') os.next() 2,sys.argv ######################################## py@lanny:~/t ...
- Python 用 os.walk 遍历目录
今天第一次进行 文件遍历,自己递归写的时候还调试了好久,(主要因为分隔符号的问题),后来发现了os.walk方法,就忍不住和大家分享下. 先看下代码: import os for i in os.wa ...
- python os.walk()和os.path.walk()
一.os.walk() 函数声明:os.walk(top,topdown=True,onerror=None) (1)参数top表示需要遍历的顶级目录的路径. (2)参数topdown的默认值是“Tr ...
- python 简单示例说明os.walk和os.path.walk的不同
import os,os.path def func(arg,dirname,names): for filespath in names: print os.path.join(dirname,fi ...
- os.walk获取同级目录具有随机性
1.在不同机器上,相同内容的目录和文件,os.walk获取结果中路径的先后顺序具有随机性. 2.查看os.walk源码得知,listdir具有随机性. 3.修改该源码,对listdir结果排序后,使得 ...
- python os.walk()遍历
os.walk()遍历 import os p='/bin' #设定一个路径 for i in os.walk(p): #返回一个元组 print (i) # i[0]是路径 i[1]是文件夹 i[2 ...
随机推荐
- laravel artisan工具的使用
Artisan是laravel中自带的命令行工具的名称(一个php文件,放在laravel框架的根目录,因此命令的使用都是在根目录下的). 它提供了一些对应用开发帮助的命令,可以使用list命令列出所 ...
- Python笔记(七)_全局变量与局部变量
全局变量与局部变量:在函数外部或内部定义的变量 1. 函数内部的变量名首次出现,且在=号左边 不管这个变量在全局域中有没有定义该变量名,都被视为一个局部变量 例1: >>>num=1 ...
- Java + selenium 元素定位(5)之By Xpath
这篇关于Xpath方法的文章和之前那篇CSS的方法一样,使用前,需要先掌握一些Xpath的相关知识.当然,网上也有各种工具可以帮助我们获取到元素的Xpath,但是这并不代表着我们就可以不用了解Xpat ...
- centosifcfg-eth0文件内容为空
虚拟机安装好CentOS 6系统后,发现ip在每次重启后都会还原,用ifconfig查看是有eth0网卡的(也有可能只有回环网卡lo),于是查看eth0网卡配置文件,发现在 /etc/sysconfi ...
- Git和Github操作
个人笔记和总结.如有错误欢迎指出https://github.com/zhaozehua0312/leran-gitAndgithub 内容已发布github上
- Base64加密工具
正常来讲加密基本上永远都要伴随着解密,所谓的加密或者解密,往往都需要有一些规则,在JDK1.8开始,提供有新的加密处理操作类,Base64处理类--Base64类 在该类之中存在两个内部类:Base6 ...
- if语句基本练习需求
1.需求:键盘录入一个成绩,判断并输出成绩的等级. 90-100 优 80-89 良好 70-79 中等 60-69 及格 0-59 不及格 import java.util.Scanner; cla ...
- luoguP1514 引水入城 题解(NOIP2010)(Bfs+贪心)
P1514 引水入城 题目 #include<iostream> #include<cstdlib> #include<cstdio> #include<c ...
- ELK-7.3安装部署
原文 ELK-7.3安装部署 前沿 1.什么是ELK? ELK是由Elasticsearch.Logstash.Kibana 三个开源软件的组成的一个组合体 不懂自行查阅 https://www.el ...
- 背包九讲(Orz)
P01: 01背包问题 题目 有\(N\)件物品和一个容量为\(V\)的背包.第\(i\)件物品的费用是\(c[i]\),价值是\(w[i]\).求解将哪些物品装入背包可使这些物品的费用总和不超过背包 ...