Browse Source

glob.glob(recursive=True) search (#917)

5.0
Glenn Jocher 4 years ago
parent
commit
9c0efdde9f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/datasets.py

+ 1
- 1
utils/datasets.py View File

@@ -110,7 +110,7 @@ class LoadImages: # for inference
p = str(Path(path)) # os-agnostic
p = os.path.abspath(p) # absolute path
if '*' in p:
files = sorted(glob.glob(p)) # glob
files = sorted(glob.glob(p, recursive=True)) # glob
elif os.path.isdir(p):
files = sorted(glob.glob(os.path.join(p, '*.*'))) # dir
elif os.path.isfile(p):

Loading…
Cancel
Save