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:
parent
6461d3fbac
commit
4b856f1c04
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue