提交 4da6f35b 编写于 作者: C cuicheng01 提交者: cuicheng01

support infer nested directory images

上级 75a5bb17
...@@ -27,9 +27,10 @@ def get_image_list(img_file): ...@@ -27,9 +27,10 @@ def get_image_list(img_file):
if os.path.isfile(img_file) and img_file.split('.')[-1] in img_end: if os.path.isfile(img_file) and img_file.split('.')[-1] in img_end:
imgs_lists.append(img_file) imgs_lists.append(img_file)
elif os.path.isdir(img_file): elif os.path.isdir(img_file):
for single_file in os.listdir(img_file): for root, dirs, files in os.walk(img_file):
if single_file.split('.')[-1] in img_end: for single_file in files:
imgs_lists.append(os.path.join(img_file, single_file)) if single_file.split('.')[-1] in img_end:
imgs_lists.append(os.path.join(root, single_file))
if len(imgs_lists) == 0: if len(imgs_lists) == 0:
raise Exception("not found any img file in {}".format(img_file)) raise Exception("not found any img file in {}".format(img_file))
imgs_lists = sorted(imgs_lists) imgs_lists = sorted(imgs_lists)
......
...@@ -27,9 +27,10 @@ def get_image_list(img_file): ...@@ -27,9 +27,10 @@ def get_image_list(img_file):
if os.path.isfile(img_file) and img_file.split('.')[-1] in img_end: if os.path.isfile(img_file) and img_file.split('.')[-1] in img_end:
imgs_lists.append(img_file) imgs_lists.append(img_file)
elif os.path.isdir(img_file): elif os.path.isdir(img_file):
for single_file in os.listdir(img_file): for root, dirs, files in os.walk(img_file):
if single_file.split('.')[-1] in img_end: for single_file in files:
imgs_lists.append(os.path.join(img_file, single_file)) if single_file.split('.')[-1] in img_end:
imgs_lists.append(os.path.join(root, single_file))
if len(imgs_lists) == 0: if len(imgs_lists) == 0:
raise Exception("not found any img file in {}".format(img_file)) raise Exception("not found any img file in {}".format(img_file))
imgs_lists = sorted(imgs_lists) imgs_lists = sorted(imgs_lists)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册