From fe0c71cbd72eb8c32ababce0bc0b0140019f717b Mon Sep 17 00:00:00 2001 From: Grzegorz Klimaszewski <166530809+grzegorz-roboflow@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:00:43 +0100 Subject: [PATCH] Add note regarding distortions and camera field of view affecting resulting calculations --- inference/core/workflows/core_steps/analytics/velocity/v1.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inference/core/workflows/core_steps/analytics/velocity/v1.py b/inference/core/workflows/core_steps/analytics/velocity/v1.py index f710bf1ac..ab39b0ab4 100644 --- a/inference/core/workflows/core_steps/analytics/velocity/v1.py +++ b/inference/core/workflows/core_steps/analytics/velocity/v1.py @@ -30,6 +30,9 @@ It includes options to smooth the velocity and speed measurements over time and to convert units from pixels per second to meters per second. It requires detections from Byte Track with unique `tracker_id` assigned to each object, which persists between frames. The velocities are calculated based on the displacement of object centers over time. + +Note: due to perspective and camera distortions calculated velocity will be different depending on object position in relation to the camera. + """