Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

object detection piéce metalique with camera basler #13521

Open
1 task done
ninja8756 opened this issue Feb 26, 2025 · 2 comments
Open
1 task done

object detection piéce metalique with camera basler #13521

ninja8756 opened this issue Feb 26, 2025 · 2 comments
Labels
detect Object Detection issues, PR's question Further information is requested

Comments

@ninja8756
Copy link

Search before asking

Question

Hi ✌ I am working on object Detection with yolov5 and I want to use basler camera to detect objects. how can I do that and get frames from the Basler camera and make detection?

Additional

No response

@ninja8756 ninja8756 added the question Further information is requested label Feb 26, 2025
@UltralyticsAssistant UltralyticsAssistant added the detect Object Detection issues, PR's label Feb 26, 2025
@UltralyticsAssistant
Copy link
Member

👋 Hello @ninja8756, 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 ❓ Question about using the Basler camera with YOLOv5, please ensure you have the necessary software to interface with your camera (e.g., Basler's pypylon library for Python) and integrate it to capture frames for processing. If you encounter issues during integration, try sharing some additional details like setup code snippets, errors, or steps causing difficulties, so we can better assist you.

If you believe this is a 🐛 Bug Report, please provide a minimum reproducible example (MRE), including code and steps to reproduce the issue, as well as details on your environment setup.

Requirements

Python>=3.8.0 with all requirements.txt installed including PyTorch>=1.8. To get started:

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

Environments

YOLOv5 can be run in a variety of environments for seamless experimentation and deployment, including:

Status

YOLOv5 CI

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

Please note this is an automated response. An Ultralytics engineer will review your question and provide further assistance as soon as possible. Thank you for your patience! 😊

@pderrenger
Copy link
Member

@ninja8756 to integrate a Basler camera with YOLOv5 for object detection, you can use the pypylon library to capture frames and pass them to YOLOv5. Here's a minimal example:

from ultralytics import YOLO
from pypylon import pylon

model = YOLO("yolov5s.pt")  # Load YOLOv5 model
camera = pylon.InstantCamera(pylon.TlFactory.GetInstance().CreateFirstDevice())
camera.StartGrabbing(pylon.GrabStrategy_LatestImageOnly)

while camera.IsGrabbing():
    grabResult = camera.RetrieveResult(5000, pylon.TimeoutHandling_ThrowException)
    if grabResult.GrabSucceeded():
        img = grabResult.Array  # Get numpy array
        results = model.predict(img)  # YOLOv5 inference
        results[0].show()

Install pypylon: pip install pypylon. For more details, see the Ultralytics YOLOv5 Predict documentation. Adjust camera settings as needed via Basler's Pylon API.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
detect Object Detection issues, PR's question Further information is requested
Projects
None yet
Development

No branches or pull requests

3 participants