Optimize auto-track for stationary camera: Gaussian blur + confidence threshold - #68
Merged
Merged
Conversation
… threshold For a fixed (non-panning) camera the background is static between frames, making per-frame sensor noise and compression artefacts the dominant source of false template matches. Changes: - Apply a 5×5 Gaussian blur to both the template at capture time and the search region on every tracking call. Using the same filter in both places keeps TM_CCOEFF_NORMED scores accurate while suppressing the high-frequency noise that would otherwise produce spurious match peaks. - Return the TM_CCOEFF_NORMED confidence score (maxVal) from the worker with every track-result message. - Reject matches below a 0.25 confidence threshold in OpenCVTracker.track() to drop motion-blurred or heavily compressed frames without discarding genuine but imperfect matches. - Keep SEARCH_PADDING_FACTOR at 2, which is appropriate when the object's own motion is the sole source of inter-frame displacement. https://claude.ai/code/session_01GJwcYz3EPjBY1rENbNR6MJ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For a fixed (non-panning) camera the background is static between frames,
making per-frame sensor noise and compression artefacts the dominant source
of false template matches.
Changes:
search region on every tracking call. Using the same filter in both
places keeps TM_CCOEFF_NORMED scores accurate while suppressing the
high-frequency noise that would otherwise produce spurious match peaks.
every track-result message.
to drop motion-blurred or heavily compressed frames without discarding
genuine but imperfect matches.
own motion is the sole source of inter-frame displacement.
https://claude.ai/code/session_01GJwcYz3EPjBY1rENbNR6MJ