From 4b856f1c04d789ab50c8420fc9ab95a0ec5974e6 Mon Sep 17 00:00:00 2001 From: Madhav-C Date: Fri, 22 May 2026 13:00:30 -0500 Subject: [PATCH] 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. --- examples/heatmap_and_track/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/heatmap_and_track/README.md b/examples/heatmap_and_track/README.md index e454cdc1..487ee358 100644 --- a/examples/heatmap_and_track/README.md +++ b/examples/heatmap_and_track/README.md @@ -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