Views
No views yet

| Method | AP3D Easy | AP3D Mod. | AP3D Hard | APBEV Easy | APBEV Mod. | APBEV Hard |
|---|---|---|---|---|---|---|
| MonoDGP | 30.76 | 22.34 | 19.02 | 39.40 | 28.20 | 24.42 |
| MonoCon | 26.33 | 19.01 | 15.98 | 34.65 | 25.39 | 21.93 |
| MonoLSS | 25.91 | 18.29 | 15.94 | 34.70 | 25.36 | 21.84 |
| DEVIANT | 24.63 | 16.54 | 14.52 | 32.60 | 23.04 | 19.99 |
| Ours | 29.61 | 30.71 | 27.76 | 33.86 | 35.19 | 31.38 |
urbanomnidetect_<backbone><-head>_<imgsz>.pt and cover
YOLOv8, YOLOv9, YOLO11, and YOLO12 across all scales (n / s / m / l / x) and head
configurations (default, P1, P2, P6). The P2 feature-pyramid head is the most
accurate; the YOLO11x-P2 family is recommended.| Checkpoint | Backbone | Input | Use case |
|---|---|---|---|
checkpoints/urbanomnidetect_yolo11x-p2_1920.pt | YOLO11x + P2 | 1920 | Highest accuracy (recommended) |
checkpoints/urbanomnidetect_yolo11x-p2_1280.pt | YOLO11x + P2 | 1280 | Accuracy / speed balance |
checkpoints/urbanomnidetect_yolo11x-p2_640.pt | YOLO11x + P2 | 640 | Real-time video and BEV |
checkpoints/urbanomnidetect_yolo11n-p2_640.pt | YOLO11n + P2 | 640 | Edge / lowest latency |
pip install ultralytics scipy scikit-learn opencv-python matplotlib1huggingface-cli download mehmetkeremturkcan/UrbanOmniDetect \
2 checkpoints/urbanomnidetect_yolo11x-p2_1920.pt \
3 --local-dir .huggingface-cli download mehmetkeremturkcan/UrbanOmniDetect --local-dir .1from ultralytics import YOLO
2
3model = YOLO("checkpoints/urbanomnidetect_yolo11x-p2_1920.pt")
4results = model.predict("your_image.jpg", imgsz=1920, conf=0.1, device="cuda:0")draw_bev.py, bev_realtime.py, sahi_tracker.py) are provided in the
GitHub repository. The BEV head
maps ground-contact keypoints to a top-down plane through an
orthogonality-constrained homography, so no camera calibration is needed.1python bev_realtime.py \
2 --input drone_manhattan.mp4 \
3 --kp-model checkpoints/urbanomnidetect_yolo11x-p2_640.pt \
4 --kp-imgsz 640 \
5 --aux-model yolo26x.pt \
6 --device cuda:0 \
7 --export tensorrt \
8 --output bev.mp41@inproceedings{turkcan2026urbanomnidetect,
2 title = {Calibration-Free View-Agnostic Monocular 3D Object Detection for Urban Scenes},
3 author = {Turkcan, Mehmet Kerem and Gumaste, Devika and Kostic, Zoran},
4 booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
5 year = {2026}
6}