Gallery from one recording, probes from another, sweeping the probe's input resolution end to end. VR-005 asked the same question over gallery mugshots but degraded an already-aligned 112x112 crop with alignment held perfect, so it isolates the embedder. Here the whole frame is downscaled before the detector, so detection and landmark regression degrade with it — which is most of the difference. Corpus is two 4096x2160 clips of one shoot, four people, hand-sorted. Ground truth is sorted by hand and gated by verify_labels.py; labels carried down the scales geometrically by box position, never by embedding similarity, which would keep only the faces the embedder already gets right and drop the ones the sweep exists to find. Findings, all scored through the production gallery sigmoid at prob_threshold 0.754 — never a raw cosine: - Holding 90% of the plateau needs ~50 px end to end, against VR-005's ~22 px. min_face_px at 40 looks right; 32 would admit faces in the falling region. - FPI is 0.0% at every scale. Resolution loss goes entirely to TBI. - The ceiling is cross-view, not resolution: everyone matches themselves within a recording (0.55-0.85) and collapses across two (0.14-0.45, threshold 0.335). Only the subject with frontal *gallery* references identified reliably, whatever their probe pose — so the lever is gallery pose coverage, not a better landmark source. - Averaging SCRFD's overlapping detections instead of discarding them at NMS lifts cross-recording TPI 41% -> 49%, for one forward pass and no extra model. Four identities and one shoot, so the shape is the result and the absolute rates are not. Both clips contain all four people, so there is no out-of-gallery class and the 10x-weighted out-of-cast misID is untested here. Clips, frames, hand-sorted crops and results are gitignored and belong in the artifact registry — the sorting is human ground truth and expensive to redo. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> TRACES: VR-013 | AR-002, AR-005, AR-024
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
#!/usr/bin/env python3
|
|
"""Apply corrections.json exported from review.html.
|
|
|
|
python3 apply_corrections.py ~/Downloads/corrections.json [--dry-run]
|
|
|
|
Moves each crop to the folder you chose. "discard" goes to labelling/<clip>/discard/,
|
|
which the sweep ignores — nothing is deleted, so a misclick is recoverable.
|
|
|
|
Refuses to move a file it cannot find exactly once, rather than guessing: a
|
|
half-applied correction set would put a crop in two folders and quietly
|
|
duplicate a label.
|
|
"""
|
|
import sys, json, glob, os, shutil
|
|
|
|
if len(sys.argv) < 2:
|
|
sys.exit(__doc__)
|
|
path = sys.argv[1]
|
|
DRY = "--dry-run" in sys.argv
|
|
corr = json.load(open(path))
|
|
if not corr:
|
|
sys.exit("no corrections in that file")
|
|
|
|
moved = skipped = 0
|
|
for fname, c in corr.items():
|
|
clip, to = c["clip"], c["to"]
|
|
hits = glob.glob(f"labelling/{clip}/**/{fname}", recursive=True)
|
|
if len(hits) != 1:
|
|
print(f"[skip] {fname}: found {len(hits)} copies, expected 1")
|
|
skipped += 1
|
|
continue
|
|
src = hits[0]
|
|
dst_dir = f"labelling/{clip}/{to}"
|
|
dst = f"{dst_dir}/{fname}"
|
|
if os.path.abspath(src) == os.path.abspath(dst):
|
|
continue
|
|
print(f"{'would move' if DRY else 'move'} {c['from']} -> {to}: {fname}")
|
|
if not DRY:
|
|
os.makedirs(dst_dir, exist_ok=True)
|
|
shutil.move(src, dst)
|
|
moved += 1
|
|
|
|
print(f"\n{moved} moved, {skipped} skipped{' (dry run)' if DRY else ''}")
|
|
if not DRY and moved:
|
|
print("re-run verify_labels.py to confirm the set is still consistent")
|