Standardize str formatting in docs (#19276)
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
6e7d888703
commit
2cad1c597b
22 changed files with 142 additions and 142 deletions
|
|
@ -1,9 +1,9 @@
|
|||
| Argument | Type | Default | Description |
|
||||
| --------- | ------- | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `source` | `str` | `None` | Specifies the source directory for images or videos. Supports file paths and URLs. |
|
||||
| `persist` | `bool` | `False` | Enables persistent tracking of objects between frames, maintaining IDs across video sequences. |
|
||||
| `tracker` | `str` | `botsort.yaml` | Specifies the tracking algorithm to use, e.g., `bytetrack.yaml` or `botsort.yaml`. |
|
||||
| `conf` | `float` | `0.3` | Sets the confidence threshold for detections; lower values allow more objects to be tracked but may include false positives. |
|
||||
| `iou` | `float` | `0.5` | Sets the [Intersection over Union](https://www.ultralytics.com/glossary/intersection-over-union-iou) (IoU) threshold for filtering overlapping detections. |
|
||||
| `classes` | `list` | `None` | Filters results by class index. For example, `classes=[0, 2, 3]` only tracks the specified classes. |
|
||||
| `verbose` | `bool` | `True` | Controls the display of tracking results, providing a visual output of tracked objects. |
|
||||
| Argument | Type | Default | Description |
|
||||
| --------- | ------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `source` | `str` | `None` | Specifies the source directory for images or videos. Supports file paths and URLs. |
|
||||
| `persist` | `bool` | `False` | Enables persistent tracking of objects between frames, maintaining IDs across video sequences. |
|
||||
| `tracker` | `str` | `'botsort.yaml'` | Specifies the tracking algorithm to use, e.g., `bytetrack.yaml` or `botsort.yaml`. |
|
||||
| `conf` | `float` | `0.3` | Sets the confidence threshold for detections; lower values allow more objects to be tracked but may include false positives. |
|
||||
| `iou` | `float` | `0.5` | Sets the [Intersection over Union](https://www.ultralytics.com/glossary/intersection-over-union-iou) (IoU) threshold for filtering overlapping detections. |
|
||||
| `classes` | `list` | `None` | Filters results by class index. For example, `classes=[0, 2, 3]` only tracks the specified classes. |
|
||||
| `verbose` | `bool` | `True` | Controls the display of tracking results, providing a visual output of tracked objects. |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue