About 158,000,000 results
Open links in new tab
  1. YOLO (You Only Look Once) is a state-of-the-art object detection algorithm that processes images or videos to detect and localize objects in real-time. Python provides several libraries, such as Ultralytics YOLO, OpenCV, and PyTorch, to work with YOLO models for tasks like object detection, segmentation, and classification.

    Using Ultralytics YOLO in Python

    The Ultralytics YOLO library simplifies the integration of YOLO models into Python projects. It supports training, validation, prediction, and exporting models. Below is an example of how to use it:

    Example Code

    from ultralytics import YOLO

    # Load a pretrained YOLO model
    model = YOLO("yolov8n.pt") # Replace with your model file

    # Perform object detection on an image
    results = model("https://ultralytics.com/images/bus.jpg")

    # Visualize the results
    for result in results:
    result.show()
    Copied!

    Key Features

    Feedback
  2. Python Usage - Ultralytics YOLO Docs

    This guide is designed to help you seamlessly integrate Ultralytics YOLO into your Python projects for object detection, segmentation, and classification. Here, you'll lear…
    How Can I Integrate Yolo11 Into My Python Project For Object Detection?

    Integrating Ultralytics YOLO11 into your Python projects is simple. You can load a pre-trained model or train a new model from scratch. Here's how to get started: See more detailed examples in our Predict Modesection.

    What Are The Different Modes Available in Yolo11?

    Ultralytics YOLO11 provides various modes to cater to different machine learningworkflows. These include: 1. Train: Train a model using custom datasets. 2. Val: Validate model performance on a validation set. 3. Predict: Make prediction…

    How Do I Train A Custom Yolo11 Model Using My dataset?

    To train a custom YOLO11 model, you need to specify your dataset and other hyperparameters. Here's a quick example: For more details on training and hyperlinks to example usage, visit our Train Modepage.

  3. Object Detection with YOLO and OpenCV

    Sep 11, 2025 · It is commonly implemented using OpenCV for image/video processing and YOLO (You Only Look Once) models for real-time …

  4. How to Perform YOLO Object Detection using OpenCV in Python

    This tutorial will teach you how to perform object detection using the YOLOv3 technique with OpenCV or PyTorch in Python. After that, we will also dive into the current state-of-the-art, …

  5. Object Detection with YOLO: Hands-on Tutorial

    Apr 22, 2025 · Today, we’re going to explore a state-of-the-art algorithm called YOLO, which achieves high accuracy at real-time speed. In …

  6. Hands-On with YOLO 11.0: A Step-by-Step Guide for …

    Oct 28, 2024 · YOLO 11.0 is the latest in a line of YOLO models, providing even faster and more accurate object detection. It’s used in applications …

  7. YOLO11 Tutorial - Colab

    Built by Ultralytics, the creators of YOLO, this notebook walks you through running state-of-the-art models directly in your browser. Ultralytics models …

  8. People also ask
  9. YOLO Object Detection from image with OpenCV …

    Learn how to use Python and OpenCV inorder to detect an object from an image with the help of the YOLO model. We will be using PyCharm IDE.

  10. Building a Real-Time Object Detection Application …

    Nov 24, 2024 · Now, let’s create a Python script that will use YOLO for real-time object detection. Create a new Python file named object_detection.py …

  11. YOLO object detection with OpenCV - PyImageSearch

    Nov 12, 2018 · In this tutorial, you’ll learn how to use the YOLO object detector to detect objects in both images and video streams using Deep …

  12. Build a Real-Time Object Detection System with …

    In this tutorial, we walked through how to set up a real-time object detection system using YOLOv5, Python, and OpenCV. Whether you’re working with a …