Explorar el Código

Remove streaming source sleep period (#8243)

Negatively impacts YouTube inference but removes any lag on webcams/RTSP/RTMP etc.

Resolves https://github.com/ultralytics/yolov5/issues/4465
modifyDataloader
Glenn Jocher GitHub hace 2 años
padre
commit
86e6add07b
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      utils/dataloaders.py

+ 1
- 1
utils/dataloaders.py Ver fichero

@@ -359,7 +359,7 @@ class LoadStreams:
LOGGER.warning('WARNING: Video stream unresponsive, please check your IP camera connection.')
self.imgs[i] = np.zeros_like(self.imgs[i])
cap.open(stream) # re-open stream if signal was lost
time.sleep(1 / self.fps[i]) # wait time
time.sleep(0.0) # wait time

def __iter__(self):
self.count = -1

Cargando…
Cancelar
Guardar