Geometry Beats Estimated Depth: RGB-Only Multi-Camera 3D Tracking under Sim2Real
Abstract: The AI City Challenge 2026 Track 1 evaluates multi-camera 3D perception in large indoor warehouses under a synthetic-to-real (Sim2Real) setting; depth is available only for training and validation, so inference is RGB-only. We use two RGB-only routes as a controlled test of one hypothesis: that cross-view geometric consistency, not monocular depth accuracy, governs performance under Sim2Real. The first is a geometry-first pipeline: YOLO11x detection, homography lifting to the world frame, class-level 3D size priors, multi-camera fusion, world-coordinate tracking, and offline tracklet stitching. The second is estimated-depth pseudo-LiDAR: monocular depth (D4RT, Metric3D~v2) back-projected into a fused point cloud and passed to a 3D detector (V-DETR), mirroring prior point-cloud winners that used depth. The gap is decisive: geometry-first reaches 13.0 3D HOTA (51.6 LocA), whereas pseudo-LiDAR collapses to 0.12 (9.2 LocA). We trace the collapse to cross-view inconsistency of monocular depth---scale correction is necessary but not sufficient---which domain-adaptation fine-tuning does not repair within budget. Within the geometry pipeline, offline stitching is the only intervention that helps; SAHI detection, appearance Re-ID, learned lifting, RT-DETR ensembling, test-time augmentation, and domain randomization all fail to beat the baseline detector. The bottlenecks are complementary: detection quality bounds the geometry route (DetA), localization consistency bounds pseudo-LiDAR (LocA). We release a complete, reproducible RGB-only pipeline and ablation.
Paper Prompts
Sign up for free to create and run prompts on this paper.
Top Community Prompts
Explain it Like I'm 14
1. What is this paper about?
This paper studies how to find and follow objects in 3D using several cameras in a warehouse.
The objects might be people, forklifts, robots, and pallet trucks. The cameras see the warehouse from different angles, and the computer must figure out:
- What objects are present?
- Where are they in the real warehouse?
- Which object in one frame is the same object seen earlier?
- Which views from different cameras show the same object?
A major challenge is that the computer can use depth information while learning, but it cannot use depth when making final predictions. It must rely only on ordinary color images, called RGB images.
The paper compares two ways to create 3D information from RGB images:
- Geometry-first method: Uses camera positions and warehouse maps to place objects in the correct world location.
- Estimated-depth method: Tries to guess how far away each pixel is and turns those guesses into a 3D point cloud.
The main conclusion is that reliable shared geometry is much more useful than separately estimated depth from each camera.
2. What questions did the researchers ask?
The researchers focused on one main question:
Is it more important for all cameras to agree about the 3D location of objects, or is it more important for each camera to estimate depth accurately on its own?
They also wanted to discover:
- Which parts of their tracking system work well?
- What causes the biggest mistakes?
- Can better object detectors improve the results?
- Can appearance recognition help the system know when two detections belong to the same object?
- Can estimated depth replace real depth?
- Does training on synthetic images transfer well to real warehouse videos?
This last issue is called Sim2Real, short for “simulation to reality.” It means a computer learns from artificial, computer-generated scenes but must later work on real scenes.
3. How did they conduct the research?
The researchers built and tested two complete systems.
Geometry-first system
The first system worked like this:
- Detect objects in each camera image. They used a model called
YOLO11x. It draws rectangles around objects and labels them, such as “person” or “forklift.” - Convert image locations into warehouse locations. The system looked at the bottom-center of each rectangle, roughly where the object touches the floor. Using information about each camera’s position and angle, it projected that point onto the warehouse floor.
This process is called homography lifting. A simple analogy is placing a transparent grid over a photograph and using known landmarks to match the photograph to a real floor plan.
- Estimate 3D box sizes. The researchers used typical sizes for each object class. For example, a forklift was assigned an approximate length, width, and height.
- Combine views from different cameras. If two cameras appeared to see the same forklift at nearly the same world location, the system merged the detections into one observation.
- Track objects over time. The system connected observations from frame to frame. If an object disappeared briefly, it predicted where the object would probably move.
- Join broken tracks afterward. Sometimes the system gave the same object two different identities because it temporarily missed it. An offline process called tracklet stitching joined these broken pieces together.
Estimated-depth pseudo-LiDAR system
The second system followed a different plan:
- A depth-estimation model, such as
D4RTorMetric3D v2, guessed how far away every part of the image was. - These guesses were converted into a 3D collection of points, similar to data from a LiDAR laser scanner. This is called pseudo-LiDAR.
- The points from all cameras were combined.
- A 3D detector called
V-DETRsearched this point cloud for objects.
The researchers also tried fine-tuning the system so that it would better handle the difference between true depth and estimated depth.
How was success measured?
They used a score called 3D HOTA. This score combines three abilities:
- Detection accuracy (
DetA): Did the system find the right objects? - Association accuracy (
AssA): Did it keep the correct identity for each object? - Localization accuracy (
LocA): Did it place objects in the correct 3D locations?
A higher score means better overall tracking.
4. What were the main results?
The geometry-first method performed much better
The best geometry-first system achieved:
| Method | HOTA | DetA | AssA | LocA |
|---|---|---|---|---|
| Geometry-first method | 13.04 | 10.79 | 16.71 | 51.58 |
| Estimated-depth pseudo-LiDAR | 0.12 | 0.05 | 0.26 | 9.23 |
The difference was enormous. The geometry-first method scored about 100 times higher in HOTA than the estimated-depth method.
Why did estimated depth fail?
Each camera estimated depth separately. Even when the depth predictions looked reasonable in individual images, they did not agree when combined.
For example:
- One camera might think the floor is at one height.
- Another camera might place the floor slightly higher.
- A third camera might place some floor points below the actual floor.
When the computer combined these inconsistent predictions, the 3D point cloud became warped and messy. Objects were then placed in the wrong locations.
The researchers found that correcting the overall depth scale was not enough. The different cameras still disagreed with one another.
This shows an important lesson:
A depth estimate can look acceptable in one image but still be unsuitable for combining many camera views.
The main weakness was object detection
The geometry-first system’s localization was fairly stable, but it did not always find the correct objects.
The detector had:
- Overall precision of about 91%
- Overall recall of about 60%
Precision asks, “When the computer says it found an object, how often is it correct?” Recall asks, “How many of the real objects did it find?”
The system often missed small, distant, hidden, or unusual objects. Pallet trucks were especially difficult, with recall of only about 24% on validation data.
Real warehouse scenes were also harder than synthetic scenes because of differences in lighting, camera quality, object appearance, and backgrounds.
Most attempted improvements did not help
The researchers tested many possible improvements:
- Using another detector
- Combining two detectors
- Looking at image sections separately with
SAHI - Using test-time image changes
- Adding appearance-based re-identification
- Replacing camera geometry with a learned model
- Training with more visual variation
- Using a lower detection threshold
Most of these changes made the final score worse. Adding more possible detections often added too many false alarms.
The one improvement that helped was offline tracklet stitching. It joined pieces of the same object’s track after the object had temporarily disappeared.
It improved:
- Association score from 14.53 to 16.71
- Overall HOTA from 12.49 to 13.04
However, it did not improve the actual object locations or detection quality. It only corrected object identities.
5. Why are these findings important?
The paper shows that, in this particular warehouse tracking problem, agreement between cameras is more important than detailed depth guesses from individual cameras.
The geometry-first method works because every camera uses the same calibrated warehouse coordinate system. This is like giving every camera the same map and asking them to place objects on that map.
The estimated-depth method fails because each camera creates its own slightly different version of reality. When those versions are combined, the result no longer lines up.
The research also identifies two different bottlenecks:
- For the geometry-first system, the biggest problem is finding objects reliably.
- For the pseudo-LiDAR system, the biggest problem is placing objects consistently in 3D.
In other words, the geometry-first system usually knows where its detected objects are, but it misses some objects. The depth-based system tries to create richer 3D information, but its 3D world is too inconsistent to be useful.
Simple conclusion and possible impact
The researchers recommend that future systems should:
- Keep using trusted camera calibration and explicit geometry.
- Focus on improving object detection, especially in real warehouse scenes.
- Avoid adding large numbers of uncertain detections.
- Be cautious about replacing camera geometry with monocular depth estimates.
- Use methods such as tracklet stitching to repair broken identities.
This could help warehouses build better systems for monitoring people, forklifts, and robots. More accurate tracking could improve safety, prevent collisions, and help manage warehouse operations.
The paper’s main message is simple:
When several cameras must work together, it is better for them to agree on a shared map than to make separate depth guesses that do not line up.
Knowledge Gaps
Knowledge gaps, limitations, and open questions
The paper leaves the following issues unresolved:
- Limited evaluation coverage: The reported leaderboard scores are based on approximately half of the hidden test set, so the conclusions may not hold on the full test distribution.
- Missing per-scene analysis: Per-scene HOTA, DetA, AssA, and LocA breakdowns are deferred, leaving it unclear whether the gains and failures are consistent across warehouses, camera layouts, and domain conditions.
- Incomplete class coverage: The detector table reports only five classes, although the task contains seven; performance for
FourierGR1T2andAgilityDigitis not quantified. - Insufficient statistical validation: The study reports single aggregate results without confidence intervals, repeated evaluation under different training seeds, or significance testing for the relatively small gains from offline stitching.
- Unclear causal isolation of geometry versus depth: The two routes differ in more than the source of geometry: they use different representations, detectors, training procedures, and post-processing. The comparison therefore does not fully isolate cross-view consistency from other pipeline differences.
- Unmatched computational budgets: Domain-adaptation fine-tuning for pseudo-LiDAR is reported to fail “within our compute budget,” but the budget, training schedule, number of iterations, and resources are not specified or matched against the geometry-first pipeline.
- Limited pseudo-LiDAR exploration: Only D4RT and Metric3D v2 are evaluated. It remains unknown whether newer, warehouse-specialized, multi-view, video-based, or explicitly scale-consistent depth models could substantially reduce the observed gap.
- No multi-view depth-consistency correction: The pseudo-LiDAR route does not appear to apply joint optimization, camera-wise scale alignment, plane fitting, bundle adjustment, temporal filtering, or cross-view self-supervision. Whether such corrections can recover useful geometry remains open.
- Unresolved role of the 3D detector: The conclusion attributes pseudo-LiDAR failure primarily to geometry, but the V-DETR detector may also be poorly calibrated for noisy estimated-depth clouds. Comparisons using multiple 3D detectors or detector-free geometric localization are needed.
- Floor-coherence metric is not fully validated: The proposed floor-coherence diagnostic is evaluated on limited scenes and is treated as predictive of tracking performance, but its correlation with HOTA, LocA, and object-level 3D error is not quantitatively established across the dataset.
- Strong assumptions about scene geometry: Homography lifting assumes a reliable, shared ground plane. The robustness of the method to ramps, uneven floors, cluttered surfaces, calibration errors, or objects not resting on the assumed plane is not investigated.
- Uncertainty in camera calibration sensitivity: The paper does not measure how errors in intrinsics, extrinsics, synchronization, or homography estimation affect lift accuracy, fusion, and tracking performance.
- Weak 3D box modeling: Object height, width, length, and vertical position are assigned using class-level priors, while yaw is estimated heuristically. The effect of instance-specific dimensions, orientation estimation, and articulated or irregular object shapes remains unexplored.
- No detailed error decomposition for lifting: The reported median lift error of approximately $0.633$ m does not distinguish errors caused by inaccurate footpoints, calibration, occlusion, truncation, camera viewpoint, object class, or distance from the camera.
- Unexplored detection improvements for the real domain: The paper identifies real-domain detection recall as the main bottleneck but does not evaluate targeted approaches such as real-image adaptation, synthetic-to-real style transfer, pseudo-labeling, class-balanced training, hard-negative mining, or domain-specific calibration.
- Limited analysis of object scale and occlusion: The paper suggests that small, distant, and occluded objects drive errors, but it does not provide performance stratified by distance, image scale, visibility, occlusion level, or camera viewpoint.
- Unclear generality of the detector conclusion: The claim that adding detections is harmful is based on specific thresholding, filtering, and fusion settings. Adaptive confidence calibration, class-specific thresholds, uncertainty-aware suppression, or recall-oriented track-level confirmation could produce different outcomes.
- Restricted association modeling: Tracking uses nearest-neighbor world-coordinate matching with simple motion extrapolation. The potential benefits of probabilistic data association, learned motion models, global assignment, occlusion reasoning, or multi-camera temporal association are not tested.
- Offline stitching limits practical deployment: The only successful association intervention uses future track evidence, making the best system offline. The paper does not determine whether comparable gains can be achieved under strict online or low-latency constraints.
- Re-ID evaluation is underdeveloped: The failed Re-ID variant is described as “light,” but its embedding model, training data, crop quality, temporal aggregation, and fusion with geometric cues are not detailed. More robust cross-domain or trajectory-level appearance methods remain untested.
- Temporal information is underused: Both detection and depth estimation are largely treated frame by frame. Temporal feature aggregation, video object detection, multi-frame depth consistency, and temporal ground-plane estimation could address missed detections and unstable geometry.
- No calibration of class-specific fusion and tracking parameters: Spatial radii, motion gates, coasting duration, track-length filters, and stitching thresholds appear heuristic. Their sensitivity and transferability across scenes and classes are not reported.
- Potential evaluation mismatch is not examined: The relationship between the alignment diagnostic, floor coherence, 3D IoU, LocA, and official HOTA is not fully characterized, leaving uncertainty about which intermediate metrics best predict leaderboard performance.
- Limited comparison with stronger RGB-only baselines: The study does not compare against modern multi-view RGB methods that directly learn feature-level cross-camera geometry, occupancy, BEV representations, or calibrated multi-view transformers.
- No investigation of hybrid geometry-depth systems: The paper compares explicit homography lifting with estimated-depth pseudo-LiDAR, but does not test hybrid approaches that use homography as a geometric constraint while using depth for object height, occlusion handling, foreground segmentation, or uncertainty estimation.
- Unresolved transfer beyond the challenge dataset: The findings are demonstrated primarily for AI City Challenge 2026 warehouses. Whether “geometry beats estimated depth” holds in outdoor environments, non-planar industrial spaces, different camera calibrations, or other Sim2Real multi-camera benchmarks remains unknown.
- Reproducibility details are incomplete: The paper refers to a complete reproducible pipeline, but key implementation details—including training splits, hyperparameters, augmentation policies, threshold values, model checkpoints, and exact post-processing settings—are not provided in the text.
- No analysis of annotation and calibration quality: The study assumes that synthetic annotations, validation labels, camera metadata, and ground-plane definitions are reliable, but does not assess their noise or its effect on the reported lift and depth-consistency measurements.
- Open question about the ultimate performance ceiling: Even with perfect 2D detection, the paper does not quantify the maximum achievable HOTA for the homography-plus-prior representation, so it remains unclear whether the proposed geometry formulation can support substantial improvement beyond the reported $13.04$ HOTA.
Practical Applications
Immediate Applications
The paper’s strongest near-term contribution is a deployable RGB-only, calibration-based multi-camera tracking workflow for structured indoor environments. These applications rely on synchronized cameras, known camera calibration, a sufficiently visible ground plane, and object categories with reasonably stable physical dimensions.
- Warehouse and logistics monitoring — industry
- Deploy the geometry-first pipeline to track people, forklifts, pallet trucks, transporters, and mobile robots across multiple warehouse cameras.
- A practical workflow would use
YOLO11xor a comparable 2D detector, project detections into a shared world coordinate system using homographies, fuse duplicate observations, and maintain identities with world-coordinate motion tracking. - Potential products include warehouse dashboards showing object locations, movement paths, dwell time, congestion, and zone occupancy.
- Dependencies: accurate camera calibration, synchronized video streams, a largely planar floor, stable camera placement, and detector performance on the target warehouse domain. The paper’s low recall for PalletTruck-like objects and real-scene imagery indicates that deployment should include class- and domain-specific validation.
- Forklift–person proximity and safety alerts — industrial safety
- World-coordinate tracks can support geofencing and proximity rules, such as alerting when a person enters a forklift operating zone or when a vehicle travels through a restricted area.
- The system can generate real-time or near-real-time alerts from estimated positions rather than relying solely on image-space distances, which vary with camera perspective.
- Dependencies: sufficiently accurate localization, conservative safety thresholds, camera coverage of relevant zones, and independent safety validation. With the reported localization and detection limitations, the system should initially be treated as an advisory or monitoring tool rather than a sole safety interlock.
- Warehouse traffic and process analytics — logistics operations
- Aggregate world-coordinate tracks to identify bottlenecks, recurring congestion, inefficient routes, excessive idle time, and underused storage or transit areas.
- A possible workflow is: export tracked trajectories, map them to warehouse zones, compute dwell and transit statistics, and integrate the results with warehouse-management or fleet-management software.
- Dependencies: consistent object identities, sufficient temporal coverage, and filtering of false positives and track fragments. Offline tracklet stitching is particularly useful for retrospective analytics because it improves identity continuity without changing object locations.
- Multi-camera robot and fleet supervision — robotics
- Mobile robots and automated vehicles can be monitored across camera blind spots using a shared world-frame representation.
- The system could provide a lightweight external perception layer for fleet-management software, including robot occupancy maps, route compliance, and detection of stalled or misplaced vehicles.
- Dependencies: known robot classes and size priors, adequate camera coverage, and reliable localization near occlusions. The method is more appropriate for structured, mostly planar facilities than for environments with ramps, shelves that obscure the ground plane, or frequent camera movement.
- Retrospective incident investigation — industry and insurance
- Store world-coordinate tracks and stitched identities for post-event reconstruction of collisions, near misses, unauthorized access, or inventory-handling incidents.
- Compared with reviewing individual camera feeds, a common coordinate system can make it easier to reconstruct the sequence of movements across views.
- Dependencies: synchronized timestamps, secure and tamper-evident video storage, calibrated cameras, and clear policies governing retention and access to worker-tracking data.
- A reproducible baseline for multi-camera 3D perception — academia
- Researchers can use the released pipeline as a reference implementation for RGB-only Sim2Real tracking, including detection, homography lifting, fusion, tracking, and offline stitching.
- It provides a controlled baseline against which to evaluate new detectors, calibration methods, association algorithms, or domain-adaptation techniques.
- Dependencies: access to compatible annotations and calibration metadata, reproducible preprocessing, and evaluation on scenes beyond the paper’s public leaderboard subset. The reported scores may not represent full hidden-test performance.
- Annotation-free geometry quality monitoring — software and MLOps
- The proposed floor-coherence metric can be integrated into data pipelines to detect whether reconstructed multi-camera geometry is globally consistent before running a 3D detector.
- For example, a deployment pipeline could reject or flag cameras whose projected floor points are dispersed, below the floor, or inconsistent with the shared elevation.
- This can reduce debugging time by distinguishing scale errors from cross-view alignment failures.
- Dependencies: a known or estimable floor plane, sufficient floor visibility, valid calibration, and thresholds adapted to camera height, image resolution, and scene geometry.
- Camera calibration and maintenance diagnostics — facilities and infrastructure
- Repeated floor-coherence checks can identify camera movement, incorrect calibration files, synchronization problems, or changes in camera mounting.
- A maintenance tool could periodically compare projected floor distributions across cameras and issue a recalibration ticket when coherence degrades.
- Dependencies: stationary cameras and a floor that remains visible. Occlusion, reflective surfaces, uneven floors, or large changes in camera pose can produce false alarms.
- Offline identity repair in video analytics — software
- The tracklet-stitching method can be added to existing tracking systems when real-time identity continuity is imperfect but retrospective processing is acceptable.
- It is particularly suitable for workforce-flow analysis, security review, and operational reporting, where future observations can be used to reconnect short track fragments.
- Dependencies: a bounded gap between fragments, reliable motion extrapolation, class-aware matching, and acceptance of offline rather than strictly causal results. It should not be used for applications requiring immediate identity decisions.
- Operational guidance for system design — policy and procurement
- Organizations procuring multi-camera perception systems can use the paper’s findings to prioritize:
- calibrated cameras and shared world geometry;
- real-domain detection data;
- per-class recall testing;
- precision–recall analysis rather than simply increasing detection volume; and
- validation of cross-view consistency before adopting monocular-depth-based 3D solutions.
- The results caution against assuming that an apparently detailed pseudo-LiDAR point cloud will outperform a simpler geometric lift.
- Dependencies: procurement teams must verify the findings in their own environments, since the experiments focus on warehouse scenes and a specific challenge configuration.
Long-Term Applications
The longer-term opportunities involve improving robustness beyond the paper’s validated setting, extending the method to less structured environments, or developing depth and geometry models that preserve cross-camera metric consistency.
- High-reliability autonomous warehouse navigation — robotics
- A stronger version of the geometry-first system could provide external multi-camera perception for autonomous forklifts, delivery robots, and humanoid or transport robots.
- World-frame tracks could feed collision prediction, shared occupancy maps, route planning, and cooperative multi-robot scheduling.
- Dependencies: substantially higher detection recall and lower false-positive rates than those reported; low-latency processing; robust handling of occlusion; uncertainty estimates; and formal safety certification. The current system is not sufficient as the sole perception source for autonomous control.
- Cross-camera metric depth reconstruction — computer vision and robotics
- The paper’s negative result suggests that future monocular-depth systems should be trained or optimized for cross-view consistency, not only per-image depth accuracy.
- Possible research directions include jointly estimating depth across synchronized cameras, enforcing a common floor-plane constraint, optimizing inter-camera reprojection error, and learning scene-level scale and pose corrections.
- A future product could produce a metrically coherent fused point cloud from RGB cameras for 3D detection and mapping.
- Dependencies: synchronized multi-camera training data, reliable calibration, computational resources, and methods capable of handling dynamic objects without distorting the shared scene geometry.
- Hybrid geometry–learning perception systems — industry and academia
- Learned models could improve detection confidence, object dimensions, yaw, or uncertainty while retaining homography-based world positioning as a hard geometric constraint.
- For example, a detector could predict whether a footpoint is reliable, estimate class-specific height variation, or select among multiple geometric hypotheses without replacing calibrated lifting.
- Dependencies: sufficiently representative real-world data and careful constraints preventing the learned component from introducing cross-view inconsistency. The paper’s failed learned MLP lift indicates that unconstrained end-to-end replacement of calibration is risky.
- Adaptive Sim2Real detection for warehouses — AI and software
- Since detection quality, particularly on real scenes and small or occluded classes, is the main bottleneck, future systems could use continual adaptation based on real warehouse imagery.
- Potential workflows include active learning from false positives and false negatives, human review of uncertain detections, synthetic data generation targeted at difficult classes, and class-specific detector retraining.
- The system could prioritize PalletTruck, Forklift, and distant or partially occluded objects rather than applying generic augmentation.
- Dependencies: access to real operational data, privacy-preserving annotation processes, stable class definitions, prevention of model drift, and evaluation across lighting, layouts, and camera configurations.
- Multi-level or nonplanar facility tracking — construction, manufacturing, and ports
- Extending the approach from a single homography and ground plane to piecewise planar maps, elevation-aware maps, ramps, mezzanines, and three-dimensional facility models could support factories, distribution centers, parking structures, and port terminals.
- A possible implementation would associate detections with a digital map containing multiple surfaces and use surface-aware projection rather than assuming all objects rest on one plane.
- Dependencies: detailed facility maps, reliable elevation estimation, visibility reasoning, and handling of objects on shelves or platforms. The current method’s assumptions about a common ground plane would otherwise produce systematic localization errors.
- Digital twins and facility-scale simulation — industry and urban systems
- Persistent world-coordinate tracks could populate a digital twin of a warehouse or factory, enabling simulation of traffic flows, staffing, robot deployment, and safety interventions.
- The same representation could be used to compare observed behavior with simulated schedules or to evaluate layout changes before physical implementation.
- Dependencies: long-term calibration stability, consistent identity management, integration with operational databases, and methods for quantifying uncertainty and correcting accumulated tracking errors.
- Privacy-preserving workplace analytics — policy and industry
- Because the pipeline can operate on object detections and world coordinates, future systems could discard or restrict access to raw video after extracting operational statistics.
- This could support occupancy, safety, and traffic monitoring while reducing the amount of identifiable imagery retained.
- Dependencies: robust anonymization, governance over worker identification, legal compliance, explicit retention policies, and safeguards against using tracking outputs for unjustified individual surveillance. World-coordinate IDs can still constitute sensitive personal data when they correspond to workers.
- Standards for cross-view consistency in 3D perception — policy and research
- The floor-coherence diagnostic could motivate benchmark protocols that report not only detection and tracking accuracy but also calibration quality, inter-camera consistency, below-ground mass, plane-fit residuals, and reprojection stability.
- Such standards would help organizations compare RGB-only 3D systems without relying exclusively on end-task scores.
- Dependencies: agreement on thresholds and test scenes, extension beyond warehouse floors, and validation that the proposed proxy correlates with performance across datasets and camera arrangements.
- Failure-aware deployment and automated fallback — safety-critical software
- A production system could monitor detector recall proxies, floor coherence, camera health, and track confidence, then switch to degraded modes when geometry or detection quality becomes unreliable.
- Examples include notifying operators, restricting robot speed, disabling automated route changes, or falling back to single-camera 2D alerts.
- Dependencies: calibrated uncertainty estimates, validated safety policies, low false-alarm rates, and integration with facility-control systems. The paper demonstrates useful diagnostics but does not yet establish operational thresholds for safety decisions.
- Generalization to transport hubs and public spaces — transportation and security
- The shared-world tracking concept could eventually be applied to airports, train stations, parking facilities, and large public venues for crowd-flow analysis, service optimization, and incident response.
- Dependencies: substantially more varied camera viewpoints, nonplanar environments, privacy protections, crowd-specific association methods, and rigorous testing under severe occlusion. The warehouse-specific class priors and floor assumptions would need to be replaced with broader scene models.
Glossary
- 3D HOTA: A higher-order metric for multi-object tracking that jointly evaluates detection, association, and localization in three dimensions. “The official metric is 3D HOTA”
- Association accuracy (AssA): A tracking metric measuring how consistently predicted identities correspond to ground-truth identities over time. “We report the leaderboard components HOTA, DetA, AssA, and LocA.”
- Back-projection: The process of converting image pixels and depth estimates into three-dimensional points using camera calibration. “Per-camera depth is predicted from RGB with a monocular model---D4RT~\cite{zhang2025d4rt} or Metric3D~v2~\cite{yin2023metric3d}---back-projected using calibration”
- BEV (bird’s-eye view): A top-down representation of a scene in world or ground-plane coordinates. “Figure~\ref{fig:bev} makes this concrete on a validation frame”
- Camera calibration: Parameters describing a camera’s geometry and its relationship to a shared spatial coordinate system. “Each 2D detection is lifted into the world coordinate system using the camera calibration”
- Class-level priors: Predefined assumptions about typical object properties, such as dimensions, for each object category. “The vertical coordinate and 3D box dimensions are assigned using class-level priors”
- Coasting: Maintaining a track during frames in which an object is temporarily undetected by extrapolating its previous motion. “We include optional coasting to bridge short gaps”
- Cross-view geometric consistency: Agreement between three-dimensional geometry reconstructed independently from multiple camera viewpoints. “Our hypothesis is that cross-view geometric consistency, not monocular depth accuracy, is the dominant factor”
- DetA (detection accuracy): The HOTA component measuring the quality of detected objects, including missed detections and false positives. “This recall weakness directly limits DetA and final HOTA.”
- Domain adaptation: Techniques for reducing performance differences between a model’s training domain and its deployment domain. “we additionally fine-tune it on estimated-depth clouds to reduce the train/test depth-domain gap”
- Domain randomization: Training with randomized simulated appearances or conditions to improve transfer from synthetic data to real environments. “YOLO26 trained on a domain-randomized~\cite{tobin2017domainrand} stress-augmented set”
- Domain shift: A difference between the data distribution used for training and that encountered during evaluation or deployment. “We attribute this to domain shift, small or distant objects, real camera artifacts”
- Estimated-depth pseudo-LiDAR: A method that turns monocular depth predictions into a point cloud so that LiDAR-oriented 3D detectors can process RGB imagery. “The second is estimated-depth pseudo-LiDAR”
- False positive: A predicted object that does not correspond to a real ground-truth object. “false positives (74) exceeding true positives (46)”
- Floor coherence: A measure of how closely reconstructed scene points cluster around the known ground plane. “As a proxy we measure floor coherence on a validation scene”
- Footpoint projection: Projection of an object’s bottom-center image location onto the ground or world plane. “using the camera calibration and a homography-based footpoint projection”
- Frame fusion: Combining detections from multiple synchronized cameras for the same time step. “detections are first fused per frame and class in world space”
- Ground-plane lifting: Mapping two-dimensional image detections onto a shared horizontal plane in three-dimensional space. “homography ground-plane lifting with class-size priors”
- HOTA: A tracking metric that balances detection, identity association, and localization performance. “stitching raises AssA from 14.53 to 16.71 (and HOTA from 12.49 to 13.04)”
- Homography: A projective transformation that maps points between two planes, such as an image plane and a ground plane. “Each 2D detection is lifted into the world coordinate system using the camera calibration and a homography-based footpoint projection.”
- Identity association: The process of determining which detections belong to the same physical object across frames or camera views. “The tracker associates fused detections to active tracks”
- Inter-view reprojection error: The discrepancy produced when a reconstructed point is projected between camera views and fails to align with its corresponding observation. “Plane-fit residuals or inter-view reprojection error are alternatives”
- LocA (localization accuracy): The HOTA component measuring the spatial accuracy of predicted object locations or bounding boxes. “The bottlenecks are complementary: detection quality bounds the geometry route (DetA), localization consistency bounds pseudo-LiDAR (LocA).”
- Metric depth: Depth expressed in a physically meaningful scale, such as meters, rather than an arbitrary relative scale. “Metric3D~v2 is metric by construction”
- Metric grounding: The property of a reconstruction being tied to a consistent real-world spatial scale and coordinate system. “a learned substitute that lacks metric grounding and cross-view agreement”
- Monocular depth estimation: Estimation of scene depth from a single camera image. “Monocular depth estimation has advanced rapidly”
- Multi-camera fusion: Integration of observations from several cameras into a common spatial representation. “multi-camera fusion into a scene point cloud”
- Offline tracklet stitching: Post-processing that joins fragmented trajectory segments using information from the complete sequence, including future observations. “We add an offline stitching stage that links same-class fragments”
- Pseudo-LiDAR: A representation that converts image-derived depth into a point cloud resembling LiDAR data for three-dimensional detection. “Pseudo-LiDAR~\cite{wang2019pseudolidar} back-projects estimated depth into a point cloud”
- Re-identification (Re-ID): Recognition of an object as the same identity after it disappears or is observed from another view. “Appearance Re-ID~\cite{ye2021reid} from object crops did not improve association”
- Scene-level detection: Detection performed in a shared representation of the entire environment rather than independently in individual image views. “the availability and quality of scene-level detections”
- Scale correction: Rescaling estimated depth so that it matches a physically meaningful metric scale. “D4RT required a near-constant 4.3 correction to reach metric scale”
- Sim2Real: Transfer of a model or system from synthetic simulation data to real-world data. “The challenge setting is Sim2Real.”
- Sliced inference: Running an object detector on overlapping image tiles to improve detection of small or distant objects. “Sliced inference (SAHI), which tiles each frame to recover small and distant objects”
- Synthetic-to-real gap: The performance discrepancy caused by differences between simulated training imagery and real-world evaluation imagery. “The test set mixes synthetic scenes (Warehouses~23--25) and real-world scenes (Warehouses~26--27).”
- Test-time augmentation (TTA): Applying transformations to inputs during inference and combining the resulting predictions to improve robustness. “YOLO11x TTA”
- Track fragmentation: The splitting of one object’s continuous trajectory into multiple track segments because of missed detections or association failures. “The online tracker fragments identities whenever an object is missed”
- Tracklet: A short sequence of detections believed to belong to the same object. “offline tracklet stitching”
- Transformer detector: An object detector based on transformer architectures that model relationships among image features using attention mechanisms. “compare against transformer detectors”
- Union-find: A data structure for efficiently maintaining and merging groups of connected elements. “chained via union-find”
- V-DETR: A transformer-based three-dimensional object detector designed for point-cloud data. “A V-DETR 3D detector~\cite{shen2024vdetr} trained on the provided-depth clouds”
- World-coordinate tracking: Tracking objects using positions represented in a shared physical coordinate system rather than image coordinates. “We include optional coasting to bridge short gaps---when a track has no detection in a frame, its position is extrapolated”
- World frame: A common coordinate system used to express the positions of objects observed by multiple cameras. “The projected point defines the object position in the world plane.”
- Yaw: An object’s rotation angle around the vertical axis. “Yaw is estimated heuristically.”
- YOLO: A family of real-time neural-network object detectors that predict object locations and classes directly from images. “We trained an Ultralytics YOLO11x detector at 1280 input resolution.”


