grabbit 66fa00aa1a feat(vida): add polygon mask to filter ground/obstacle false detections
Introduce configurable polygon masks that block ground, trees, and other
obstacles from triggering false meteor/fireball detections. Masks are
applied after thresholding but before morphology and line detection,
shared via Arc between both detectors. CLI supports --mask <json> flag.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 02:30:30 +08:00

11 lines
168 B
JSON

{
"enabled": true,
"mode": "exclude",
"polygons": [
{
"label": "ground",
"vertices": [[0, 900], [1920, 900], [1920, 1080], [0, 1080]]
}
]
}