0%

有序遍历文件夹

按数字从小到大遍历文件夹

1
for root, _, images in tqdm(sorted(os.walk(src_path)))

按数字从小到大遍历文件

1
for image in sorted(images, key=lambda x : int(os.path.splitext(x)[0]))

sorted()中

images作用:待排序的列表

key表示sorted中用于排序的规则

匿名函数:lambda x : int(os.path.splitext(x)[0])