ultralytics 8.0.155
allow imgsz
and batch
resume changes (#4366)
Co-authored-by: Mostafa Nemati <58460889+monemati@users.noreply.github.com> Co-authored-by: Eduard Voiculescu <eduardvoiculescu95@gmail.com>
This commit is contained in:
@ -321,7 +321,7 @@ All supported arguments:
|
||||
| `augment` | `bool` | `False` | apply image augmentation to prediction sources |
|
||||
| `agnostic_nms` | `bool` | `False` | class-agnostic NMS |
|
||||
| `retina_masks` | `bool` | `False` | use high-resolution segmentation masks |
|
||||
| `classes` | `None or list` | `None` | filter results by class, i.e. class=0, or class=[0,2,3] |
|
||||
| `classes` | `None or list` | `None` | filter results by class, i.e. classes=0, or classes=[0,2,3] |
|
||||
| `boxes` | `bool` | `True` | Show boxes in segmentation predictions |
|
||||
|
||||
## Image and Video Formats
|
||||
|
@ -9,50 +9,18 @@ keywords: Ultralytics, Trackers Utils, Matching, merge_matches, linear_assignmen
|
||||
|
||||
Full source code for this file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/trackers/utils/matching.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/trackers/utils/matching.py). Help us fix any issues you see by submitting a [Pull Request](https://docs.ultralytics.com/help/contributing/) 🛠️. Thank you 🙏!
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.merge_matches
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching._indices_to_matches
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.linear_assignment
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.ious
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.iou_distance
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.v_iou_distance
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.embedding_distance
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.gate_cost_matrix
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.fuse_motion
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.fuse_iou
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.fuse_score
|
||||
<br><br>
|
||||
|
||||
---
|
||||
## ::: ultralytics.trackers.utils.matching.bbox_ious
|
||||
<br><br>
|
||||
|
@ -154,7 +154,7 @@ The prediction settings for YOLO models encompass a range of hyperparameters and
|
||||
| `augment` | `False` | apply image augmentation to prediction sources |
|
||||
| `agnostic_nms` | `False` | class-agnostic NMS |
|
||||
| `retina_masks` | `False` | use high-resolution segmentation masks |
|
||||
| `classes` | `None` | filter results by class, i.e. class=0, or class=[0,2,3] |
|
||||
| `classes` | `None` | filter results by class, i.e. classes=0, or classes=[0,2,3] |
|
||||
| `boxes` | `True` | Show boxes in segmentation predictions |
|
||||
|
||||
[Predict Guide](../modes/predict.md){ .md-button .md-button--primary}
|
||||
|
Reference in New Issue
Block a user