diff --git a/docs/en/guides/distance-calculation.md b/docs/en/guides/distance-calculation.md index bcbeab7ced..3a54a16adf 100644 --- a/docs/en/guides/distance-calculation.md +++ b/docs/en/guides/distance-calculation.md @@ -12,13 +12,13 @@ Measuring the gap between two objects is known as distance calculation within a


-
- Watch: Distance Calculation using Ultralytics YOLO11 + Watch: How to estimate distance between detected objects with Ultralytics YOLO in Pixels 🚀

## Visuals diff --git a/docs/en/models/rtdetr.md b/docs/en/models/rtdetr.md index 83ca531fcf..ba7ce2a1c7 100644 --- a/docs/en/models/rtdetr.md +++ b/docs/en/models/rtdetr.md @@ -12,13 +12,13 @@ Real-Time Detection Transformer (RT-DETR), developed by Baidu, is a cutting-edge


-
- Watch: Real-Time Detection Transformer (RT-DETR) + Watch: How to Use Baidu's RT-DETR for Object Detection | Inference and Benchmarking with Ultralytics 🚀

![Model example image](https://github.com/ultralytics/docs/releases/download/0/baidu-rtdetr-model-overview.avif) **Overview of Baidu's RT-DETR.** The RT-DETR model architecture diagram shows the last three stages of the backbone {S3, S4, S5} as the input to the encoder. The efficient hybrid encoder transforms multiscale features into a sequence of image features through intrascale feature interaction (AIFI) and cross-scale feature-fusion module (CCFM). The IoU-aware query selection is employed to select a fixed number of image features to serve as initial object queries for the decoder. Finally, the decoder with auxiliary prediction heads iteratively optimizes object queries to generate boxes and confidence scores ([source](https://arxiv.org/pdf/2304.08069)). diff --git a/docs/en/models/yolo-world.md b/docs/en/models/yolo-world.md index 1ed626480b..ca0b9872cc 100644 --- a/docs/en/models/yolo-world.md +++ b/docs/en/models/yolo-world.md @@ -79,6 +79,17 @@ This section details the models available with their specific pre-trained weight The YOLO-World models are easy to integrate into your Python applications. Ultralytics provides user-friendly [Python API](../usage/python.md) and [CLI commands](../usage/cli.md) to streamline development. +

+
+ +
+ Watch: YOLO-World Model Usage examples with Ultralytics | Open Vocab, Prompt-Free & others 🚀 +

+ ### Train Usage !!! tip diff --git a/docs/en/models/yoloe.md b/docs/en/models/yoloe.md index 06fd454618..22f121f1d6 100644 --- a/docs/en/models/yoloe.md +++ b/docs/en/models/yoloe.md @@ -79,6 +79,17 @@ The YOLOE models are easy to integrate into your Python applications. Ultralytic You can fine-tune any [pretrained YOLOE model](#textvisual-prompt-models) on your custom YOLO dataset for both detection and instance segmentation tasks. +

+
+ +
+ Watch: How to Train YOLOE on Car Parts Segmentation Dataset | Open-Vocabulary Model, Prediction & Export 🚀 +

+ !!! example === "Fine-Tuning" diff --git a/docs/en/modes/track.md b/docs/en/modes/track.md index 8c57326283..5827713786 100644 --- a/docs/en/modes/track.md +++ b/docs/en/modes/track.md @@ -202,6 +202,17 @@ Once exported, you can point to the TensorRT model path in your tracker config, ## Python Examples +

+
+ +
+ Watch: How to Build Interactive Object Tracking with Ultralytics YOLO | Click to Crop & Display âš¡ +

+ ### Persisting Tracks Loop Here is a Python script using [OpenCV](https://www.ultralytics.com/glossary/opencv) (`cv2`) and YOLO11 to run object tracking on video frames. This script still assumes you have already installed the necessary packages (`opencv-python` and `ultralytics`). The `persist=True` argument tells the tracker that the current image or frame is the next in a sequence and to expect tracks from the previous image in the current image.