From 7b40b55e0156302120388b398ee73543e9af3824 Mon Sep 17 00:00:00 2001 From: UltralyticsAssistant Date: Fri, 13 Sep 2024 04:18:38 +0000 Subject: [PATCH] Auto-format by https://ultralytics.com/actions --- docs/en/modes/predict.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/en/modes/predict.md b/docs/en/modes/predict.md index 5d0db0b60..ee43c9e93 100644 --- a/docs/en/modes/predict.md +++ b/docs/en/modes/predict.md @@ -113,8 +113,8 @@ YOLOv8 can process different types of input sources for inference, as shown in t | OpenCV | `cv2.imread('im.jpg')` | `np.ndarray` | HWC format with BGR channels `uint8 (0-255)`. | | numpy | `np.zeros((640,1280,3))` | `np.ndarray` | HWC format with BGR channels `uint8 (0-255)`. | | torch | `torch.zeros(16,3,320,640)` | `torch.Tensor` | BCHW format with RGB channels `float32 (0.0-1.0)`. | -| CSV | `'sources.csv'` | `str` or `Path` | CSV file containing paths to images, videos, or directories. -| TXT | `'sources.txt'` | `str` or `Path` | TXT file containing paths to images, videos, or directories. | +| CSV | `'sources.csv'` | `str` or `Path` | CSV file containing paths to images, videos, or directories. | +| TXT | `'sources.txt'` | `str` or `Path` | TXT file containing paths to images, videos, or directories. | | video ✅ | `'video.mp4'` | `str` or `Path` | Video file in formats like MP4, AVI, etc. | | directory ✅ | `'path/'` | `str` or `Path` | Path to a directory containing images or videos. | | glob ✅ | `'path/*.jpg'` | `str` | Glob pattern to match multiple files. Use the `*` character as a wildcard. | @@ -260,8 +260,7 @@ Below are code examples for using each source type: # Run inference on the source results = model(source) # list of Results objects - - === "TXT" + "TXT" Run inference on a collection of images, videos and directories listed in a TXT file. ```python