Not every camera is equally reliable
Multiview detection projects feature maps from many cameras onto one ground plane to beat occlusion. The strong baseline, MVDetr, weights every camera equally.
But occlusion depends on object position and camera angle — equal weighting leaves accuracy on the table.
A 2D network to anchor the truth
A single-view detection-by-tracking network (FairMOT on DLA-34) produces reliable 2D foot points, using tracklets to fill in missed detections under occlusion.
Lift each view to the ground plane
Perspective transformation maps each camera's feature map onto the bird's-eye ground plane; a deformable transformer encodes per-camera BEV features.
Reliability = agreement between 2D and 3D
Project the predicted 3D foot point back to 2D and measure its discrepancy against the 2D detection. Small discrepancy means a trustworthy camera.
Averaged per camera, this becomes a camera-aware attention weight Ac.
Guide learning — only when it matters
Cameras are aggregated by attention-weighted averaging, F = (1/C)·Σ Ac·fc. Because the consistency computation is expensive, a query-based-learning scheduler only steps in when the camera weight order shifts — gated by an entropy change above 0.1.
The 2D network acts as an oracle that schedules when to teach the 3D detector — a scheduler, just like in my generation work.
A new benchmark on both datasets
QMVDet sets state-of-the-art MODA on Wildtrack (93.1%) and MultiviewX (95.1%), beating MVDet, MVDetr and 3DROM.
It even stays robust when some cameras drop out.