yolov5 icon indicating copy to clipboard operation
yolov5 copied to clipboard

How to run YOLOv5 in real time with an infrared camera

Open Jongjae-Lee opened this issue 3 years ago • 8 comments

Search before asking

  • [x] I have searched the YOLOv5 issues and discussions and found no similar questions.

Question

Hi, I'm trying to run YOLOv5 in real time with an infrared camera(16-bit grayscale camera).

When I type "python detect.py --source 0", it makes " MFVideoFormat_RGB32(codec not found) ", " AttributeError: 'NoneType' object has no attribute 'shape' " error.

KakaoTalk_20220706_232139011

If I run with a normal webcam, it works well. What is the problem?

Additional

No response

Jongjae-Lee avatar Jul 06 '22 14:07 Jongjae-Lee

👋 Hello @Jongjae-Lee, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ Tutorials to get started, where you can find quickstart guides for simple tasks like Custom Data Training all the way to advanced concepts like Hyperparameter Evolution.

If this is a 🐛 Bug Report, please provide screenshots and minimum viable code to reproduce your issue, otherwise we can not help you.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset images, training logs, screenshots, and a public link to online W&B logging if available.

For business inquiries or professional support requests please visit https://ultralytics.com or email [email protected].

Requirements

Python>=3.7.0 with all requirements.txt installed including PyTorch>=1.7. To get started:

git clone https://github.com/ultralytics/yolov5  # clone
cd yolov5
pip install -r requirements.txt  # install

Environments

YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):

Status

CI CPU testing

If this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training (train.py), validation (val.py), inference (detect.py) and export (export.py) on macOS, Windows, and Ubuntu every 24 hours and on every commit.

github-actions[bot] avatar Jul 06 '22 14:07 github-actions[bot]

It works with an infrared images like this

capture 31

but it doesn't work in real-time

Jongjae-Lee avatar Jul 06 '22 14:07 Jongjae-Lee

@Jongjae-Lee , does your IR camera provide a 4-channel stream? In that case you may need to split RGB and IR into two, and only provide RGB to cv2.VideoCapture method in line 324 of detect.py.

bit-scientist avatar Jul 07 '22 03:07 bit-scientist

@Jongjae-Lee n-channel training and deployment are not officially supported yet, but you could make modifications yourself throughout the dataloaders to support this.

glenn-jocher avatar Jul 07 '22 11:07 glenn-jocher

@glenn-jocher Is there no official support for 1-channel training and deployment?

Jongjae-Lee avatar Jul 07 '22 12:07 Jongjae-Lee

@bit-scientist Thank you for the comment. Unfortunately, my camera only provides 1-channel stream. OTL

Jongjae-Lee avatar Jul 07 '22 12:07 Jongjae-Lee

@Jongjae-Lee yes, 1ch datasets and mixed 1ch/3ch datasets (like COCO) are handled automatically. The dataloaders will upscale 1ch images to 3ch by default.

glenn-jocher avatar Jul 07 '22 13:07 glenn-jocher

👋 Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.

Access additional YOLOv5 🚀 resources:

  • Wiki – https://github.com/ultralytics/yolov5/wiki
  • Tutorials – https://docs.ultralytics.com/yolov5
  • Docs – https://docs.ultralytics.com

Access additional Ultralytics ⚡ resources:

  • Ultralytics HUB – https://ultralytics.com/hub
  • Vision API – https://ultralytics.com/yolov5
  • About Us – https://ultralytics.com/about
  • Join Our Team – https://ultralytics.com/work
  • Contact Us – https://ultralytics.com/contact

Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!

Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐!

github-actions[bot] avatar Aug 07 '22 00:08 github-actions[bot]