# image_list
root_dir = '../data'
img_path_list = []
for (root, dirs, files) in os.walk(root_dir):
if len(files) > 0:
for file_name in files:
img_path = root + '/' + file_name
img_path = img_path.replace('\\', '/')
img_path_list.append(img_path)
print(img_path_list)
'Language > Python' 카테고리의 다른 글
Selenium으로 Chorme 크롤링 & 저장 (0) | 2022.03.31 |
---|---|
Python에서 Void Pointer 사용하기 (0) | 2022.03.22 |
원하는 크기의 이미지 resize (padding 붙이기!) (0) | 2022.01.27 |
Python 속도 더 빠르게 만들기 - jit (0) | 2022.01.27 |
Python Multi Process - ray (0) | 2022.01.11 |