Python: Obtain All Image Path from Given Folder
作者:XD / 发表: 2021年12月15日 05:44 / 更新: 2021年12月15日 05:44 / 编程笔记 / 阅读量:2341
Python: Obtain All Image Path from Given Folder
image_list = []
path = './test/'
for root, dirs, files in os.walk(path):
for file in files:
if file[-4:] == ".jpg":
image_path = os.path.join(root, file)
image_list.append(image_path)
相关标签