REVIEW 5 minor 40 references
A transformer that learns to track objects by jointly weighing appearance and 3D location keeps identities and locations alive even after long absences from the camera's view.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
2026-07-10 05:44 UTC pith:IF2RTWUU
load-bearing objection First learned OSNOM tracker that actually generalizes: solid absolute gains on three datasets from 56 training videos, with the relative-distance + NT-token design doing the real work.
Whareformer: Learning to Track What is Where in Long Egocentric Videos
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Whareformer shows that a transformer which jointly reasons over relative appearance distances and relative 3D location distances, together with an explicit New Track token, can learn online track assignment for the OSNOM task from a small set of labelled trajectories and still generalise to unseen kitchens, non-kitchen scenes, and different recording devices.
What carries the argument
The What-and-Where Transformer: an updatable memory of DenStream appearance clusters plus a short 3D location buffer, whose pairwise relative distances to a new observation are embedded and concatenated with a learnable New Track token, then scored by a single-layer transformer encoder that outputs a probability over existing tracks or new-track creation.
Load-bearing premise
The 3D locations obtained by lifting monocular depth into a reconstructed world frame are accurate and stable enough that Euclidean distances between observations and tracks remain a reliable signal for assignment.
What would settle it
Replace the aligned depth pipeline with noisy monocular depth or deliberately drifted reconstructions on the same EPIC-KITCHENS test set and measure whether mPCL and IDF1 collapse relative to the aligned baseline reported in Table 5.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces Whareformer, the first learning-based method for the OSNOM task of online long-term 3D object tracking in egocentric video. Observations are encoded by PCA-reduced DINOv2 appearance features and monocular-depth lifts into a world frame; tracks maintain an evolving DenStream appearance summary and a short location buffer. Relative Euclidean distances are projected into assignment-likelihood embeddings, prepended with a learnable New Track token, and scored by a single-layer transformer that jointly decides matching versus new-track creation. The model is trained with teacher forcing (optionally DAgger) on 56 EPIC-KITCHENS videos and evaluated on 260 long sequences spanning EPIC-KITCHENS (unseen kitchens), IT3DEgo and HD-EPIC, reporting large absolute gains over LMK and other baselines on both mPCL and IDF1.
Significance. If the reported gains hold, the work supplies a practical, data-efficient solution to a recently formalised and practically important problem: maintaining object permanence and identity under prolonged occlusions and viewpoint changes typical of egocentric video. The relative-distance formulation, explicit New Track token, and DenStream memory are clean, reusable design choices that generalise across three datasets and recording devices with only 56 training videos. Extensive controlled ablations (appearance/location/NT token, encoder depth, DenStream parameters, depth alignment, conflict resolution) and qualitative multi-dataset examples make the contribution reproducible and falsifiable. The result is therefore of clear interest to the egocentric-vision and 3D-tracking communities.
minor comments (5)
- No error bars or statistical significance tests accompany the mPCL/IDF1 numbers in Table 1 or the PCL curves in Figure 3; given the large absolute margins this is not load-bearing, but a short note on variance across videos would strengthen the claim.
- Section 3.7 and Table 12 describe three conflict-resolution strategies that yield essentially identical scores; a one-sentence statement of the chosen default (greedy) and its asymptotic cost would improve reproducibility.
- The DenStream parameters (ε, µ, λ) and the precise pruning threshold τ_p are given only in the appendix; moving the selected values into the main Implementation Details paragraph would help readers who do not consult the supplement.
- Figure 4 and Figure 5 captions refer to green/red colour coding that is clear in the PDF but would benefit from an explicit legend for colour-blind readers.
- A few minor typos appear (e.g., “Whareformerconsiders” missing space in the contributions paragraph; “T eacher F orcing” in Table 6).
Circularity Check
No circularity: supervised learning of track assignment from external GT IDs; relative distances and NT token are free parameters, not definitions of the target metrics.
full rationale
Whareformer is an empirical supervised model. Training uses teacher forcing on ground-truth track IDs (Section 3.7) with a standard cross-entropy loss; the model never defines mPCL or IDF1 in terms of its own parameters. The inputs to the assignment module are relative Euclidean distances (Eq. 1) between observation descriptors and track memory (DenStream appearance + short location buffer), projected by a learned linear map g (Eq. 2) and scored by a transformer that also contains a free New Track token. These quantities are free parameters optimized against external labels; they are not fitted constants that force the reported metrics by construction. Self-citations to the OSNOM task definition and the LMK baseline [26] supply the problem statement, the 3D lifting pipeline, and the evaluation protocol; they are not used as uniqueness theorems or as the sole justification of the central claim. Ablations (Tables 2–6) and cross-dataset transfer further demonstrate that the gains are not tautological. Consequently the derivation chain contains no self-definitional step, no fitted-input-called-prediction, and no load-bearing self-citation circularity.
Axiom & Free-Parameter Ledger
free parameters (6)
- DenStream ε (micro-cluster radius) =
0.25
- DenStream µ (promotion threshold) =
10.0
- DenStream λ (temporal decay) =
1e-3
- PCA dimension D =
256
- Transformer embedding dim d / heads / layers =
64 / 32 / 1
- Location buffer length W =
~1 s
axioms (4)
- domain assumption DINOv2 CLS features (ViT-g) after mask isolation and PCA are sufficiently discriminative for long-term re-identification under viewpoint and interaction changes.
- domain assumption Monocular depth aligned to a static 3D reconstruction yields metric locations accurate enough that Euclidean distances remain useful for association even after minutes of absence.
- domain assumption Ground-truth object masks and track IDs are available at training time for teacher forcing.
- ad hoc to paper A single linear projection of concatenated appearance and location distances followed by a 1-layer transformer is expressive enough to model assignment decisions.
invented entities (2)
-
New Track (NT) token
no independent evidence
-
Whareformer assignment likelihood embeddings
no independent evidence
Cite this review
Pith. "Pith review of Whareformer: Learning to Track What is Where in Long Egocentric Videos." pith.science (2026). https://pith.science/paper/IF2RTWUU
@misc{pith2026260708537,
author = {Pith},
title = {Pith review of: Whareformer: Learning to Track What is Where in Long Egocentric Videos},
year = {2026},
howpublished = {\url{https://pith.science/paper/IF2RTWUU}},
note = {Machine review of arXiv:2607.08537}
}
read the original abstract
The recently established 'Out of Sight, Not out of Mind' (OSNOM) task for egocentric videos focuses on tracking objects that are moved by the camera wearer, online, maintaining knowledge of instance locations throughout the video even when they leave the field of view or become heavily occluded. In this paper, we propose the first learning-based solution to the OSNOM task: Whareformer, a transformer-based model with two components: an updatable memory of established tracks and a track assignment module that associates observations with existing tracks in a feed-forward manner. Whareformer jointly reasons over evolving object appearance (what) and updated 3D location (where), and employs a dedicated New Track token to reason about novel objects. Thanks to its design choices of using relative distances and evolving track representations, Whareformer is trained on a small set of 56 videos but achieves SOTA performance on 260 long test videos from three datasets: EPIC-KITCHENS-100 (unseen videos), IT3DEgo, and HD-EPIC, with significant absolute improvements over prior work.
Figures
Reference graph
Works this paper leans on
-
[1]
In: European Conference on Computer Vision (ECCV) (2020)
Achlioptas, P., Abdelreheem, A., Xia, F., Elhoseiny, M., Guibas, L.: Referit3d: Neural listeners for fine-grained 3d object identification in real-world scenes. In: European Conference on Computer Vision (ECCV) (2020)
work page 2020
-
[2]
Journal of Experimental Algorithmics (JEA)17(2012)
Ackermann,M.R.,Märtens,M.,Raupach,C.,Swierkot,K.,Lammersen,C.,Sohler, C.: Streamkm++ a clustering algorithm for data streams. Journal of Experimental Algorithmics (JEA)17(2012)
work page 2012
-
[3]
In: International Conference on Image Analysis and Processing (ICIAP) (2015)
Alletto, S., Serra, G., Cucchiara, R.: Egocentric object tracking: An odometry- based solution. In: International Conference on Image Analysis and Processing (ICIAP) (2015)
work page 2015
-
[4]
Ardeshir,S.,Borji,A.:Integratingegocentricvideosintop-viewsurveillancevideos: Jointidentificationandtemporalalignment.In:EuropeanConferenceonComputer Vision (ECCV) (2018)
work page 2018
-
[5]
In: European Conference on Computer Vision (ECCV) (2024)
Avetisyan, A., Xie, C., Howard-Jenkins, H., Yang, T.Y., Aroudj, S., Patra, S., Zhang, F., Frost, D., Holland, L., Orme, C., et al.: Scenescript: Reconstructing scenes with an autoregressive structured language model. In: European Conference on Computer Vision (ECCV) (2024)
work page 2024
-
[6]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2025)
Banerjee, P., Shkodrani, S., Moulon, P., Hampali, S., Han, S., Zhang, F., Zhang, L., Fountain, J., Miller, E., Basol, S., et al.: Hot3d: Hand and object tracking in 3d from egocentric multi-view videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2025)
work page 2025
-
[7]
In: Asian Conference on Computer Vision (ACCV) (2024)
Bhalgat, Y., Tschernezki, V., Laina, I., Henriques, J.F., Vedaldi, A., Zisserman, A.: 3d-aware instance segmentation and tracking in egocentric videos. In: Asian Conference on Computer Vision (ACCV) (2024)
work page 2024
-
[8]
Cao, F., Ester, M., Qian, W., Zhou, A.: Density-based clustering over an evolving datastreamwithnoise.In:ProceedingsoftheSixthSIAMInternationalConference on Data Mining (ICDM) (2006)
work page 2006
-
[9]
In: European Conference on Computer Vision (ECCV) (2020)
Chen, D.Z., Chang, A.X., Nießner, M.: Scanrefer: 3d object localization in rgb- d scans using natural language. In: European Conference on Computer Vision (ECCV) (2020)
work page 2020
-
[10]
International Journal of Computer Vision (IJCV)130(2022)
Damen, D., Doughty, H., Farinella, G.M., Furnari, A., Ma, J., Kazakos, E., Molti- santi, D., Munro, J., Perrett, T., Price, W., Wray, M.: Rescaling egocentric vision: Collection, pipeline and challenges for epic-kitchens-100. International Journal of Computer Vision (IJCV)130(2022)
work page 2022
-
[11]
International Journal of Computer Vision (IJCV)131(2023)
Dunnhofer, M., Furnari, A., Farinella, G.M., Micheloni, C.: Visual object tracking in first person vision. International Journal of Computer Vision (IJCV)131(2023)
work page 2023
-
[12]
Dunnhofer, M., Manigrasso, Z., Micheloni, C.: Is tracking really more challenging in first person egocentric vision? In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2025)
work page 2025
-
[13]
Project Aria: A New Tool for Egocentric Multi-Modal AI Research
Engel, J., Somasundaram, K., Goesele, M., Sun, A., Gamino, A., Turner, A., Ta- lattof, A., Yuan, A., Souti, B., Meredith, B., et al.: Project aria: A new tool for egocentric multi-modal ai research. arXiv preprint arXiv:2308.13561 (2023)
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[14]
In: European Conference on Computer Vision (ECCV) (2024)
Goletto, G., Nagarajan, T., Averta, G., Damen, D.: Amego: Active memory from long egocentric videos. In: European Conference on Computer Vision (ECCV) (2024)
work page 2024
-
[15]
Han, R., Feng, W., Zhang, Y., Zhao, J., Wang, S.: Multiple human association and tracking from egocentric and complementary top views. IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI)44(2021) Whareformer: Learning to Track What is Where in Long Egocentric Videos 17
work page 2021
-
[16]
Pro- ceedings of the 32nd ACM International Conference on Multimedia (ACM) (2024)
Hao, S., Chai, W., Zhao, Z., Sun, M., Hu, W., Zhou, J., Zhao, Y., Li, Q., Wang, Y., Li, X., Wang, G.: Ego3dt: Tracking every 3d object in ego-centric videos. Pro- ceedings of the 32nd ACM International Conference on Multimedia (ACM) (2024)
work page 2024
-
[17]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2023)
Huang, M., Li, X., Hu, J., Peng, H., Lyu, S.: Tracking multiple deformable objects in egocentric videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2023)
work page 2023
-
[18]
Khosla, S., V, S.T., Schwing, A., Hoiem, D.: Relocate: A simple training-free base- line for visual query localization using region-based representations. In: Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2025)
work page 2025
-
[19]
In: International Conference on Learning Representations (ICLR) (2017)
Loshchilov, I., Hutter, F.: Decoupled weight decay regularization. In: International Conference on Learning Representations (ICLR) (2017)
work page 2017
-
[20]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) (2023)
Mai, J., Hamdi, A., Giancola, S., Zhao, C., Ghanem, B.: Egoloc: Revisiting 3d object localization from egocentric videos with visual queries. In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) (2023)
work page 2023
-
[21]
2026 IEEE/CVF Winter Conference on Applications of Computer Vision (WACV) (2024)
Manigrasso, Z., Dunnhofer, M., Furnari, A., Nottebaum, M., Finocchiaro, A., Marana, D., Farinella, G.M., Micheloni, C.: Online episodic memory visual query localization with egocentric streaming object memory. 2026 IEEE/CVF Winter Conference on Applications of Computer Vision (WACV) (2024)
work page 2026
-
[22]
In: Forty-second International Conference on Machine Learning (ICML) (2025)
McVay, P., Arnaud, S., Martin, A., Majumdar, A., Jatavallabhula, K.M., Thomas, P., Partsey, R., Dugas, D., Gejji, A., Sax, A., et al.: Locate 3d: Real-world ob- ject localization via self-supervised learning in 3d. In: Forty-second International Conference on Machine Learning (ICML) (2025)
work page 2025
-
[23]
Journal of The Society for Industrial and Applied Mathematics (SIAM)10(1957)
Munkres, J.: Algorithms for the assignment and transportation problems. Journal of The Society for Industrial and Applied Mathematics (SIAM)10(1957)
work page 1957
-
[24]
Transactions on Ma- chine Learning Research (2024)
Oquab, M., Darcet, T., Moutakanni, T., Vo, H.V., Szafraniec, M., Khalidov, V., Fernandez, P., Haziza, D., Massa, F., El-Nouby, A., Assran, M., Ballas, N., Galuba, W., Howes, R., Huang, P.Y., Li, S.W., Misra, I., Rabbat, M., Sharma, V., Syn- naeve, G., Xu, H., Jegou, H., Mairal, J., Labatut, P., Joulin, A., Bojanowski, P.: DINOv2: Learning robust visual fe...
work page 2024
-
[25]
Perrett, T., Darkhalil, A., Sinha, S., Emara, O., Pollard, S., Parida, K., Liu, K., Gatti, P., Bansal, S., Flanagan, K., Chalk, J., Zhu, Z., Guerrier, R., Abdelazim, F., Zhu, B., Moltisanti, D., Wray, M., Doughty, H., Damen, D.: Hd-epic: A highly- detailed egocentric video dataset. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern ...
work page 2025
-
[26]
In: 2025 International Conference on 3D Vision (3DV) (2025)
Plizzari, C., Goel, S., Perrett, T., Chalk, J., Kanazawa, A., Damen, D.: Spatial cog- nition from egocentric video: Out of sight, not out of mind. In: 2025 International Conference on 3D Vision (3DV) (2025)
work page 2025
-
[27]
In: ProceedingsoftheIEEE/CVFConferenceonComputerVisionandPatternRecog- nition (CVPR) (2022)
Price, W., Vondrick, C., Damen, D.: Unweavenet: Unweaving activity stories. In: ProceedingsoftheIEEE/CVFConferenceonComputerVisionandPatternRecog- nition (CVPR) (2022)
work page 2022
-
[28]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) (2023)
Qian, S., Fouhey, D.F.: Understanding 3d object interaction from a single image. In: Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) (2023)
work page 2023
-
[29]
Rajasegaran, J., Pavlakos, G., Kanazawa, A., Malik, J.: Tracking people by pre- dicting 3d appearance, location and pose. In: Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition (CVPR) (2022)
work page 2022
-
[30]
Ravi, N., Gabeur, V., Hu, Y.T., Hu, R., Ryali, C., Ma, T., Khedr, H., Rädle, R., Rolland, C., Gustafson, L., Mintun, E., Pan, J., Alwala, K.V., Carion, N., 18 J. Chalk et al. Wu, C.Y., Girshick, R., Dollar, P., Feichtenhofer, C.: SAM 2: Segment anything in images and videos. In: The Thirteenth International Conference on Learning Representations (2025)
work page 2025
-
[31]
In: European Conference on Computer Vision (ECCV) (2016)
Ristani, E., Solera, F., Zou, R., Cucchiara, R., Tomasi, C.: Performance measures and a data set for multi-target, multi-camera tracking. In: European Conference on Computer Vision (ECCV) (2016)
work page 2016
-
[32]
Ross, S., Gordon, G., Bagnell, D.: A reduction of imitation learning and structured prediction to no-regret online learning. In: Proceedings of the Fourteenth Interna- tional Conference on Artificial Intelligence and Statistics (AISTATS). Proceedings of Machine Learning Research, vol. 15 (2011)
work page 2011
-
[33]
In: European Conference on Computer Vision (ECCV) (2022)
Stearns, C., Rempe, D., Li, J., Ambruş, R., Zakharov, S., Guizilini, V., Yang, Y., Guibas, L.J.: Spot: Spatiotemporal modeling for 3d object tracking. In: European Conference on Computer Vision (ECCV) (2022)
work page 2022
-
[34]
Advances in Neural Information Processing Systems (NeurIPS)36(2023)
Tang, H., Liang, K.J., Grauman, K., Feiszli, M., Wang, W.: Egotracks: A long- term egocentric visual object tracking dataset. Advances in Neural Information Processing Systems (NeurIPS)36(2023)
work page 2023
-
[35]
IEEE Robotics and Automation Letters (RA-L)7(2022)
Wang, X., Fu, C., Li, Z., Lai, Y., He, J.: Deepfusionmot: A 3d multi-object tracking framework based on camera-lidar fusion with deep association. IEEE Robotics and Automation Letters (RA-L)7(2022)
work page 2022
-
[36]
International Conference on Intelligent Robots and Systems (IROS) (2020)
Weng, X., Wang, J., Held, D., Kitani, K.: 3D Multi-Object Tracking: A Baseline and New Evaluation Metrics. International Conference on Intelligent Robots and Systems (IROS) (2020)
work page 2020
-
[37]
IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI) 35(2012)
Yang, Y., Ramanan, D.: Articulated human detection with flexible mixtures of parts. IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI) 35(2012)
work page 2012
-
[38]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2021)
Yin, T., Zhou, X., Krahenbuhl, P.: Center-based 3d object detection and tracking. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2021)
work page 2021
-
[39]
In: European Conference on Computer Vision (ECCV) (2022)
Zhang, Y., Sun, P., Jiang, Y., Yu, D., Weng, F., Yuan, Z., Luo, P., Liu, W., Wang, X.: Bytetrack: Multi-object tracking by associating every detection box. In: European Conference on Computer Vision (ECCV) (2022)
work page 2022
-
[40]
Zhao, Y., Ma, H., Kong, S., Fowlkes, C.: Instance tracking in 3d scenes from ego- centric videos. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (2024) Whareformer: Learning to Track What is Where in Long Egocentric Videos 19 A Additional qualitative examples We provide video-based qualitative results for all ...
work page 2024
This paper was first reviewed by grok-4.5 on July 10, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.