Explorar el Código

update datasets.py to add detect.py --source glob_command feature

5.0
Glenn Jocher hace 4 años
padre
commit
8412d44dce
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. +5
    -3
      utils/datasets.py

+ 5
- 3
utils/datasets.py Ver fichero

@@ -70,10 +70,12 @@ class LoadImages: # for inference
def __init__(self, path, img_size=640):
p = str(Path(path)) # os-agnostic
p = os.path.abspath(p) # absolute path
if os.path.isdir(p):
files = sorted(glob.glob(os.path.join(p, '*.*')))
if '*' in p:
files = sorted(glob.glob(p)) # glob
elif os.path.isdir(p):
files = sorted(glob.glob(os.path.join(p, '*.*'))) # dir
elif os.path.isfile(p):
files = [p]
files = [p] # files
else:
raise Exception('ERROR: %s does not exist' % p)


Cargando…
Cancelar
Guardar