Browse Source

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 2 years ago
parent
commit
86e6add07b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/dataloaders.py

+ 1
- 1
utils/dataloaders.py View File

@@ -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

Loading…
Cancel
Save