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>
11 lines
168 B
JSON
11 lines
168 B
JSON
{
|
|
"enabled": true,
|
|
"mode": "exclude",
|
|
"polygons": [
|
|
{
|
|
"label": "ground",
|
|
"vertices": [[0, 900], [1920, 900], [1920, 1080], [0, 1080]]
|
|
}
|
|
]
|
|
}
|