docs(examples): fix outdated CLI flag names in `heatmap_and_track` README (#2266)

The README listed `--track_threshold` and `--match_threshold`, but
script.py exposes `--track_activation_threshold` and
`--minimum_matching_threshold` (the CLI surface is derived from the
main() signature by jsonargparse.auto_cli). Following the README as
written produced "unknown argument" errors.

Aligns the README with the actual CLI surface.
This commit is contained in:
Madhav-C 2026-05-22 13:00:30 -05:00 committed by GitHub
parent 6461d3fbac
commit 4b856f1c04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -44,9 +44,9 @@ supervision package for multiple tasks such as drawing heatmap annotations, trac
particularly in distinguishing between different objects.
- `--heatmap_alpha` (optional): Opacity of the overlay mask, between 0 and 1.
- `--radius` (optional): Radius of the heat circle.
- `--track_threshold` (optional): Detection confidence threshold for track activation.
- `--track_activation_threshold` (optional): Detection confidence threshold for track activation.
- `--track_seconds` (optional): Number of seconds to buffer when a track is lost.
- `--match_threshold` (optional): Threshold for matching tracks with detections.
- `--minimum_matching_threshold` (optional): Threshold for matching tracks with detections.
## ⚙️ run