id
stringlengths
6
6
text
stringlengths
20
17.2k
title
stringclasses
1 value
246192
Contour Features {#tutorial_js_contour_features} ================ @prev_tutorial{tutorial_js_contours_begin} @next_tutorial{tutorial_js_contour_properties} Goal ---- - To find the different features of contours, like area, perimeter, centroid, bounding box etc - You will learn plenty of functions related to cont...
246239
Getting Started with Videos {#tutorial_py_video_display} =========================== Goal ---- - Learn to read video, display video, and save video. - Learn to capture video from a camera and display it. - You will learn these functions : **cv.VideoCapture()**, **cv.VideoWriter()** Capture Video from Camera --...
246242
Drawing Functions in OpenCV {#tutorial_py_drawing_functions} =========================== Goal ---- - Learn to draw different geometric shapes with OpenCV - You will learn these functions : **cv.line()**, **cv.circle()** , **cv.rectangle()**, **cv.ellipse()**, **cv.putText()** etc. Code ---- In all the above...
246255
Contour Features {#tutorial_py_contour_features} ================ @prev_tutorial{tutorial_py_contours_begin} @next_tutorial{tutorial_py_contour_properties} Goal ---- In this article, we will learn - To find the different features of contours, like area, perimeter, centroid, bounding box etc - You will see plent...
246321
### Visualizing images It is very useful to see intermediate results of your algorithm during development process. OpenCV provides a convenient way of visualizing images. A 8U image can be shown using: @add_toggle_cpp @snippet samples/cpp/tutorial_code/core/mat_operations/mat_operations.cpp imshow 1 @end_toggle @add...
246374
Adding borders to your images {#tutorial_copyMakeBorder} ============================= @tableofcontents @prev_tutorial{tutorial_filter_2d} @next_tutorial{tutorial_sobel_derivatives} | | | | -: | :- | | Original author | Ana Huamán | | Compatibility | OpenCV >= 3.0 | Goal ---- In this tutorial you will learn ...
246459
# How to run deep networks on Android device {#tutorial_android_dnn_intro} @tableofcontents @prev_tutorial{tutorial_dev_with_OCV_on_Android} @next_tutorial{tutorial_android_ocl_intro} @see @ref tutorial_table_of_content_dnn | | | | -: | :- | | Original author | Dmitry Kurtaev | | Compatibility | OpenCV >= 4.9...
246535
YOLO DNNs {#tutorial_dnn_yolo} =============================== @tableofcontents @prev_tutorial{tutorial_dnn_openvino} @next_tutorial{tutorial_dnn_javascript} | | | | -: | :- | | Original author | Alessandro de Oliveira Faria | | Extended by | Abduragim Shtanchaev | | Compatibility | OpenCV >= 4.9.0 | ...
246536
### PyTorch Model Export Now that we know know the parameters of the pre-precessing we can go on and export the model from Pytorch to ONNX graph. Since in this tutorial we are using YOLOX as our sample model, lets use its export for demonstration purposes (the process is identical for the rest of the YOLO detectors e...
251138
### Saturation Arithmetics As a computer vision library, OpenCV deals a lot with image pixels that are often encoded in a compact, 8- or 16-bit per channel, form and thus have a limited value range. Furthermore, certain operations on images, like color space conversions, brightness/contrast adjustments, sharpening, co...
251185
class Arguments(NewOpenCVTests): def _try_to_convert(self, conversion, value): try: result = conversion(value).lower() except Exception as e: self.fail( '{} "{}" is risen for conversion {} of type {}'.format( type(e).__name__, e, value, ty...
251277
#!/usr/bin/env python from __future__ import print_function import numpy as np import cv2 as cv from tests_common import NewOpenCVTests class Imgproc_Tests(NewOpenCVTests): def test_python_986(self): cntls = [] img = np.zeros((100,100,3), dtype=np.uint8) color = (0,0,0) cnts = n...
251599
package org.opencv.utils; import java.util.ArrayList; import java.util.List; import org.opencv.core.CvType; import org.opencv.core.Mat; import org.opencv.core.MatOfByte; import org.opencv.core.MatOfDMatch; import org.opencv.core.MatOfKeyPoint; import org.opencv.core.MatOfPoint; import org.opencv.core.MatOfPoint2f; im...
251746
package org.opencv.test.dnn; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.core.MatOfFloat; import org.opencv.core.MatOfByte; import org.opencv.core.Scalar; i...
253192
![PyTorch Logo](https://github.com/pytorch/pytorch/raw/main/docs/source/_static/img/pytorch-logo-dark.png) -------------------------------------------------------------------------------- PyTorch is a Python package that provides two high-level features: - Tensor computation (like NumPy) with strong GPU acceleration ...
253193
Installation ### Binaries Commands to install binaries via Conda or pip wheels are on our website: [https://pytorch.org/get-started/locally/](https://pytorch.org/get-started/locally/) #### NVIDIA Jetson Platforms Python wheels for NVIDIA's Jetson Nano, Jetson TX1/TX2, Jetson Xavier NX/AGX, and Jetson AGX Orin are p...
253194
nstall PyTorch **On Linux** If you would like to compile PyTorch with [new C++ ABI](https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html) enabled, then first run this command: ```bash export _GLIBCXX_USE_CXX11_ABI=1 ``` Please **note** that starting from PyTorch 2.5, the PyTorch build with XPU supports...
262479
# mypy: allow-untyped-defs r""" This package adds support for CUDA tensor types. It implements the same function as CPU tensors, but they utilize GPUs for computation. It is lazily initialized, so you can always import it, and use :func:`is_available()` to determine if your system supports CUDA. :ref:`cuda-semantics...
270703
iv> See below for a quickstart install and usage examples, and see our [Docs](https://docs.ultralytics.com/) for full documentation on training, validation, prediction and deployment. <details open> <summary>Install</summary> Pip install the ultralytics package including all [requirements](https://github.com/ultraly...
270730
.skipif(not ONLINE, reason="environment is offline") @pytest.mark.skipif(not IS_TMP_WRITEABLE, reason="directory is not writeable") def test_track_stream(): """ Tests streaming tracking on a short 10 frame video using ByteTrack tracker and different GMC methods. Note imgsz=160 required for tracking for hig...
270749
docs.ultralytics.com
270751
<p align="left" style="margin-bottom: -20px;">![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ultralytics?logo=python&logoColor=gold)<p> === "Pip install (recommended)" Install the `ultralytics` package using pip, or update an existing installation by running `pip install -U ultralytics`. ...
270752
[PyTorch](https://www.ultralytics.com/glossary/pytorch) requirements vary by operating system and CUDA requirements, so it's recommended to install PyTorch first following instructions at [https://pytorch.org/get-started/locally](https://pytorch.org/get-started/locally/). <a href="https://pytorch.org/get-started/l...
270754
### How do I install Ultralytics using pip? To install Ultralytics with pip, execute the following command: ```bash pip install ultralytics ``` For the latest stable release, this will install the `ultralytics` package directly from the Python Package Index (PyPI). For more details, visit the [ultralytics package on...
270760
## Export Export a YOLO11n Pose model to a different format like ONNX, CoreML, etc. !!! example === "Python" ```python from ultralytics import YOLO # Load a model model = YOLO("yolo11n-pose.pt") # load an official model model = YOLO("path/to/best.pt") # load a custom t...
270761
--- comments: true description: Learn about object detection with YOLO11. Explore pretrained models, training, validation, prediction, and export details for efficient object recognition. keywords: object detection, YOLO11, pretrained models, training, validation, prediction, export, machine learning, computer vision -...
270762
## FAQ ### How do I train a YOLO11 model on my custom dataset? Training a YOLO11 model on a custom dataset involves a few steps: 1. **Prepare the Dataset**: Ensure your dataset is in the YOLO format. For guidance, refer to our [Dataset Guide](../datasets/detect/index.md). 2. **Load the Model**: Use the Ultralytics Y...
270763
--- comments: true description: Master instance segmentation using YOLO11. Learn how to detect, segment and outline objects in images with detailed guides and examples. keywords: instance segmentation, YOLO11, object detection, image segmentation, machine learning, deep learning, computer vision, COCO dataset, Ultralyt...
270764
## FAQ ### How do I train a YOLO11 segmentation model on a custom dataset? To train a YOLO11 segmentation model on a custom dataset, you first need to prepare your dataset in the YOLO segmentation format. You can use tools like [JSON2YOLO](https://github.com/ultralytics/JSON2YOLO) to convert datasets from other forma...
270766
--- comments: true description: Discover how to detect objects with rotation for higher precision using YOLO11 OBB models. Learn, train, validate, and export OBB models effortlessly. keywords: Oriented Bounding Boxes, OBB, Object Detection, YOLO11, Ultralytics, DOTAv1, Model Training, Model Export, AI, Machine Learning...
270767
## Export Export a YOLO11n-obb model to a different format like ONNX, CoreML, etc. !!! example === "Python" ```python from ultralytics import YOLO # Load a model model = YOLO("yolo11n-obb.pt") # load an official model model = YOLO("path/to/best.pt") # load a custom tra...
270768
--- comments: true description: Master image classification using YOLO11. Learn to train, validate, predict, and export models efficiently. keywords: YOLO11, image classification, AI, machine learning, pretrained models, ImageNet, model export, predict, train, validate model_name: yolo11n-cls --- # Image Classificatio...
270771
# Model Training with Ultralytics YOLO <img width="1024" src="https://github.com/ultralytics/docs/releases/download/0/ultralytics-yolov8-ecosystem-integrations.avif" alt="Ultralytics YOLO ecosystem and integrations"> ## Introduction Training a [deep learning](https://www.ultralytics.com/glossary/deep-learning-dl) mo...
270772
## Train Settings The training settings for YOLO models encompass various hyperparameters and configurations used during the training process. These settings influence the model's performance, speed, and [accuracy](https://www.ultralytics.com/glossary/accuracy). Key training settings include batch size, learning rate,...
270774
--- comments: true description: Learn how to evaluate your YOLO11 model's performance in real-world scenarios using benchmark mode. Optimize speed, accuracy, and resource allocation across export formats. keywords: model benchmarking, YOLO11, Ultralytics, performance evaluation, export formats, ONNX, TensorRT, OpenVINO...
270776
FAQ ### How do I train a custom [object detection](https://www.ultralytics.com/glossary/object-detection) model with Ultralytics YOLO11? Training a custom object detection model with Ultralytics YOLO11 involves using the train mode. You need a dataset formatted in YOLO format, containing images and corresponding anno...
270777
--- comments: true description: Learn how to export your YOLO11 model to various formats like ONNX, TensorRT, and CoreML. Achieve maximum compatibility and performance. keywords: YOLO11, Model Export, ONNX, TensorRT, CoreML, Ultralytics, AI, Machine Learning, Inference, Deployment --- # Model Export with Ultralytics Y...
270778
--- comments: true description: Learn how to validate your YOLO11 model with precise metrics, easy-to-use tools, and custom settings for optimal performance. keywords: Ultralytics, YOLO11, model validation, machine learning, object detection, mAP metrics, Python API, CLI --- # Model Validation with Ultralytics YOLO <...
270779
## FAQ ### How do I validate my YOLO11 model with Ultralytics? To validate your YOLO11 model, you can use the Val mode provided by Ultralytics. For example, using the Python API, you can load a model and run validation with: ```python from ultralytics import YOLO # Load a model model = YOLO("yolo11n.pt") # Validat...
270780
--- comments: true description: Discover efficient, flexible, and customizable multi-object tracking with Ultralytics YOLO. Learn to track real-time video streams with ease. keywords: multi-object tracking, Ultralytics YOLO, video analytics, real-time tracking, object detection, AI, machine learning --- # Multi-Object...
270781
Python Examples ### 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` ...
270783
--- comments: true description: Harness the power of Ultralytics YOLO11 for real-time, high-speed inference on various data sources. Learn about predict mode, key features, and practical applications. keywords: Ultralytics, YOLO11, model prediction, inference, predict mode, real-time inference, computer vision, machine...
270784
Run inference on an image file. ```python from ultralytics import YOLO # Load a pretrained YOLO11n model model = YOLO("yolo11n.pt") # Define path to the image file source = "path/to/image.jpg" # Run inference on the source results = model(source) # lis...
270786
Results All Ultralytics `predict()` calls will return a list of `Results` objects: !!! example "Results" ```python from ultralytics import YOLO # Load a pretrained YOLO11n model model = YOLO("yolo11n.pt") # Run inference on an image results = model("bus.jpg") # list of 1 Results object ...
270787
s` object can be used index, get `top1` and `top5` indices and scores of classification. !!! example "Probs" ```python from ultralytics import YOLO # Load a pretrained YOLO11n-cls Classify model model = YOLO("yolo11n-cls.pt") # Run inference on an image results = model("bus.jpg") # results ...
270788
rce `for`-loop Here's a Python script using OpenCV (`cv2`) and YOLO to run inference on video frames. This script assumes you have already installed the necessary packages (`opencv-python` and `ultralytics`). !!! example "Streaming for-loop" ```python import cv2 from ultralytics import YOLO # Load ...
270791
--- comments: true description: Discover OBB dataset formats for Ultralytics YOLO models. Learn about their structure, application, and format conversions to enhance your object detection training. keywords: Oriented Bounding Box, OBB Datasets, YOLO, Ultralytics, Object Detection, Dataset Formats --- # Oriented Boundi...
270804
--- comments: true description: Learn about dataset formats compatible with Ultralytics YOLO for robust object detection. Explore supported datasets and learn how to convert formats. keywords: Ultralytics, YOLO, object detection datasets, dataset formats, COCO, dataset conversion, training datasets --- # Object Detect...
270805
## FAQ ### What is the Ultralytics YOLO dataset format and how to structure it? The Ultralytics YOLO format is a structured configuration for defining datasets in your training projects. It involves setting paths to your training, validation, and testing images and corresponding labels. For example: ```yaml path: .....
270807
# FAQ ### What is the COCO dataset and why is it important for computer vision? The [COCO dataset](https://cocodataset.org/#home) (Common Objects in Context) is a large-scale dataset used for [object detection](https://www.ultralytics.com/glossary/object-detection), segmentation, and captioning. It contains 330K imag...
270829
--- comments: true description: Learn how to structure datasets for YOLO classification tasks. Detailed folder structure and usage examples for effective training. keywords: YOLO, image classification, dataset structure, CIFAR-10, Ultralytics, machine learning, training data, model evaluation --- # Image Classificatio...
270830
## FAQ ### How do I structure my dataset for YOLO classification tasks? To structure your dataset for Ultralytics YOLO classification tasks, you should follow a specific split-directory format. Organize your dataset into separate directories for `train`, `test`, and optionally `val`. Each of these directories should ...
270837
--- comments: true description: Explore the supported dataset formats for Ultralytics YOLO and learn how to prepare and use datasets for training object segmentation models. keywords: Ultralytics, YOLO, instance segmentation, dataset formats, auto-annotation, COCO, segmentation models, training data --- # Instance Seg...
270853
# Pose Estimation Datasets Overview ## Supported Dataset Formats ### Ultralytics YOLO format The dataset label format used for training YOLO pose models is as follows: 1. One text file per image: Each image in the dataset has a corresponding text file with the same name as the image file and the ".txt" extension. 2...
270854
## FAQ ### What is the Ultralytics YOLO format for pose estimation? The Ultralytics YOLO format for pose estimation datasets involves labeling each image with a corresponding text file. Each row of the text file stores information about an object instance: - Object class index - Object center coordinates (normalized...
270859
## FAQ ### What are Ultralytics callbacks and how can I use them? **Ultralytics callbacks** are specialized entry points triggered during key stages of model operations like training, validation, exporting, and prediction. These callbacks allow for custom functionality at specific points in the process, enabling enha...
270860
--- comments: true description: Learn to integrate YOLO11 in Python for object detection, segmentation, and classification. Load, train models, and make predictions easily with our comprehensive guide. keywords: YOLO11, Python, object detection, segmentation, classification, machine learning, AI, pretrained models, tra...
270861
## [Track](../modes/track.md) Track mode is used for tracking objects in real-time using a YOLO11 model. In this mode, the model is loaded from a checkpoint file, and the user can provide a live video stream to perform real-time object tracking. This mode is useful for applications such as surveillance systems or self...
270862
--- comments: true description: Explore the YOLO11 command line interface (CLI) for easy execution of detection tasks without needing a Python environment. keywords: YOLO11 CLI, command line interface, YOLO11 commands, detection tasks, Ultralytics, model training, model prediction --- # Command Line Interface Usage T...
270865
--- comments: true description: Optimize your YOLO model's performance with the right settings and hyperparameters. Learn about training, validation, and prediction configurations. keywords: YOLO, hyperparameters, configuration, training, validation, prediction, model settings, Ultralytics, performance optimization, ma...
270866
## Logging, Checkpoints and Plotting Settings Logging, checkpoints, plotting, and file management are important considerations when training a YOLO model. - Logging: It is often helpful to log various metrics and statistics during training to track the model's progress and diagnose any issues that may arise. This can...
270869
Box (horizontal) Instances To manage bounding box data, the `Bboxes` class will help to convert between box coordinate formatting, scale box dimensions, calculate areas, include offsets, and more! ```python import numpy as np from ultralytics.utils.instance import Bboxes boxes = Bboxes( bboxes=np.array( ...
270870
alytics includes an Annotator class that can be used to annotate any kind of data. It's easiest to use with [object detection bounding boxes](../modes/predict.md#boxes), [pose key points](../modes/predict.md#keypoints), and [oriented bounding boxes](../modes/predict.md#obb). #### Horizontal Bounding Boxes ```{ .py .a...
270887
rmance Metrics !!! performance === "Detection" See [Detection Docs](../tasks/detect.md) for usage examples with these models trained on [COCO](../datasets/detect/coco.md), which include 80 pre-trained classes. | Model ...
270895
--- comments: true description: Discover a variety of models supported by Ultralytics, including YOLOv3 to YOLOv10, NAS, SAM, and RT-DETR for detection, segmentation, and more. keywords: Ultralytics, supported models, YOLOv3, YOLOv4, YOLOv5, YOLOv6, YOLOv7, YOLOv8, YOLOv9, YOLOv10, SAM, NAS, RT-DETR, object detection, ...
270896
FAQ ### What are the key advantages of using Ultralytics YOLOv8 for object detection? Ultralytics YOLOv8 offers enhanced capabilities such as real-time object detection, instance segmentation, pose estimation, and classification. Its optimized architecture ensures high-speed performance without sacrificing [accuracy]...
270904
differences between YOLOv3, YOLOv3-Ultralytics, and YOLOv3u? YOLOv3 is the third iteration of the YOLO (You Only Look Once) [object detection](https://www.ultralytics.com/glossary/object-detection) algorithm developed by Joseph Redmon, known for its balance of [accuracy](https://www.ultralytics.com/glossary/accuracy) ...
270906
ection Docs](../tasks/detect.md) for usage examples with these models trained on [COCO](../datasets/detect/coco.md), which include 80 pre-trained classes. | Model | size<br><sup>(pixels) | mAP<sup>val<br>50-95 | Speed<br><sup>CPU ON...
270907
| 37.5 | 99.7 | | [YOLOv8x-cls](https://github.com/ultralytics/assets/releases/download/v8.2.0/yolov8x-cls.pt) | 224 | 79.0 | 94.6 | 232.0 | 1.01 | 57.4 | 154.8 ...
270908
u use the YOLOv8 model or any other software from this repository in your work, please cite it using the following format: !!! quote "" === "BibTeX" ```bibtex @software{yolov8_ultralytics, author = {Glenn Jocher and Ayush Chaurasia and Jing Qiu}, title = {Ultralytics YOLOv8}, ...
270910
your Python applications. Ultralytics provides user-friendly Python API and CLI commands to streamline development. ### Train Usage !!! tip We strongly recommend to use `yolov8-worldv2` model for custom training, because it supports deterministic training and also easy to export other formats i.e onnx/tensorrt. ...
270929
--- comments: true description: Learn how to export YOLO11 models to CoreML for optimized, on-device machine learning on iOS and macOS. Follow step-by-step instructions. keywords: CoreML export, YOLO11 models, CoreML conversion, Ultralytics, iOS object detection, macOS machine learning, AI deployment, machine learning ...
270930
## FAQ ### How do I export YOLO11 models to CoreML format? To export your [Ultralytics YOLO11](https://github.com/ultralytics/ultralytics) models to CoreML format, you'll first need to ensure you have the `ultralytics` package installed. You can install it using: !!! example "Installation" === "CLI" ``...
270932
# Interactive [Object Detection](https://www.ultralytics.com/glossary/object-detection): Gradio & Ultralytics YOLO11 🚀 ## Introduction to Interactive Object Detection This Gradio interface provides an easy and interactive way to perform object detection using the [Ultralytics YOLO11](https://github.com/ultralytics/u...
270944
### Exporting TensorRT with INT8 Quantization Exporting Ultralytics YOLO models using TensorRT with INT8 [precision](https://www.ultralytics.com/glossary/precision) executes post-training quantization (PTQ). TensorRT uses calibration for PTQ, which measures the distribution of activations within each activation tensor...
270951
### Step 4: Preprocess the Data Fortunately, all labels in the marine litter data set are already formatted as YOLO .txt files. However, we need to rearrange the structure of the image and label directories in order to help our model process the image and labels. Right now, our loaded data set directory follows this s...
270960
--- comments: true description: Learn to simplify the logging of YOLO11 training with Comet ML. This guide covers installation, setup, real-time insights, and custom logging. keywords: YOLO11, Comet ML, logging, machine learning, training, model checkpoints, metrics, installation, configuration, real-time insights, cus...
270971
arguments for all of the various Ultralytics [tasks] and [modes]! That's a lot to remember and it can be easy to forget if the argument is `save_frame` or `save_frames` (it's definitely `save_frames` by the way). This is where the `ultra.kwargs` snippets can help out! !!! example To insert the [predict] method, i...
271004
--- comments: true description: Learn how to train YOLOv5 on your own custom datasets with easy-to-follow steps. Detailed guide on dataset preparation, model selection, and training process. keywords: YOLOv5, custom dataset, model training, object detection, machine learning, AI, YOLO model, PyTorch, dataset preparatio...
271005
ion 2: Create a Manual Dataset ### 2.1 Create `dataset.yaml` [COCO128](https://www.kaggle.com/datasets/ultralytics/coco128) is an example small tutorial dataset composed of the first 128 images in [COCO](https://cocodataset.org/) train2017. These same 128 images are used for both training and validation to verify our...
271007
I train YOLOv5 on my custom dataset? Training YOLOv5 on a custom dataset involves several steps: 1. **Prepare Your Dataset**: Collect and label images. Use tools like [Roboflow](https://roboflow.com/?ref=ultralytics) to organize data and export in [YOLOv5 format](https://roboflow.com/formats/yolov5-pytorch-txt?ref=ul...
271009
v5 with PyTorch Hub ### Simple Example This example loads a pretrained YOLOv5s model from PyTorch Hub as `model` and passes an image for inference. `'yolov5s'` is the lightest and fastest YOLOv5 model. For details on all available models please see the [README](https://github.com/ultralytics/yolov5#pretrained-checkpo...
271010
o load a YOLOv5 model for training rather than inference, set `autoshape=False`. To load a model with randomly initialized weights (to train from scratch) use `pretrained=False`. You must provide your own training script in this case. Alternatively see our YOLOv5 [Train Custom Data Tutorial](./train_custom_data.md) for...
271023
--- comments: true description: Dive deep into the powerful YOLOv5 architecture by Ultralytics, exploring its model structure, data augmentation techniques, training strategies, and loss computations. keywords: YOLOv5 architecture, object detection, Ultralytics, YOLO, model structure, data augmentation, training strate...
271025
--- comments: true description: Learn to freeze YOLOv5 layers for efficient transfer learning, reducing resources and speeding up training while maintaining accuracy. keywords: YOLOv5, transfer learning, freeze layers, machine learning, deep learning, model training, PyTorch, Ultralytics --- 📚 This guide explains how...
271039
--- comments: true description: Discover how to achieve optimal mAP and training results using YOLOv5. Learn essential dataset, model selection, and training settings best practices. keywords: YOLOv5 training, mAP, dataset best practices, model selection, training settings, YOLOv5 guide, YOLOv5 tutorial, machine learni...
271040
| Argument | Type | Default | Description ...
271041
| Argument | Default | Description | | ----------------- | -------- |...
271045
| Argument | Type | Default | Description | | ----------- | ---------------- | --------------- | ----------------------...
271046
| Argument | Type | Default | Range | Description | | ----------------- | ------- | ------------- | ------------- | --------------------...
271048
| Argument | Type | Default | Description | | --------- | ------- | -------------- | ---------------------------------------------------------------------------------...
271051
| Argument | Type | Default | Description | | ------------- | --------------- | ----------------- | -----------------------...
271052
| Argument | Type | Default | Description | | ------------- | ------- | ------- | ------------...
271054
--- comments: true description: Enhance your security with real-time object detection using Ultralytics YOLO11. Reduce false positives and integrate seamlessly with existing systems. keywords: YOLO11, Security Alarm System, real-time object detection, Ultralytics, computer vision, integration, false positives --- # Se...
271059
--- comments: true description: Learn how to deploy Ultralytics YOLO11 on NVIDIA Jetson devices using TensorRT and DeepStream SDK. Explore performance benchmarks and maximize AI capabilities. keywords: Ultralytics, YOLO11, NVIDIA Jetson, JetPack, AI deployment, embedded systems, deep learning, TensorRT, DeepStream SDK,...
271062
--- comments: true description: Explore the most effective ways to assess and refine YOLO11 models for better performance. Learn about evaluation metrics, fine-tuning processes, and how to customize your model for specific needs. keywords: Model Evaluation, Machine Learning Model Evaluation, Fine Tuning Machine Learnin...
271087
## Results After you've successfully completed the hyperparameter tuning process, you will obtain several files and directories that encapsulate the results of the tuning. The following describes each: ### File Structure Here's what the directory structure of the results will look like. Training directories like `tr...
271096
## FAQ ### What is the best way to avoid bias in data collection for computer vision projects? Avoiding bias in data collection ensures that your computer vision model performs well across various scenarios. To minimize bias, consider collecting data from diverse sources to capture different perspectives and scenario...
271106
--- comments: true description: Learn how to crop and extract objects using Ultralytics YOLO11 for focused analysis, reduced data volume, and enhanced precision. keywords: Ultralytics, YOLO11, object cropping, object detection, image processing, video analysis, AI, machine learning --- # Object Cropping using Ultralyt...
271113
--- comments: true description: Learn how to use Ultralytics YOLO11 for real-time object blurring to enhance privacy and focus in your images and videos. keywords: YOLO11, object blurring, real-time processing, privacy protection, image manipulation, video editing, Ultralytics --- # Object Blurring using Ultralytics Y...