---
title: Reference-Frame Task Grounding
url: https://www.emergentmind.com/topics/reference-frame-task-grounding
type: topic
---

# Reference-Frame Task Grounding

Reference-frame task grounding is the problem of grounding perception, language, demonstrations, or trajectories in the coordinate system that is semantically appropriate for the task being solved. Across recent work, the relevant frame may be the 2D image plane, an intrinsic object-centric frame, a world or scene frame, a target-centric allocentric frame, a task-relevant $6\mathrm{DoF}$ local frame inferred from motion, or a deictic temporal frame anchored at “now” [2106.03089] [2207.02624] [2408.04034] [2509.00310] [2510.16685] [2602.05789]. The topic has become central in embodied AI because performance degrades when models must resolve relations whose meanings depend on perspective, temporal anchoring, or task structure rather than on static appearance alone [2606.22694].

## 1. Conceptual foundations

A reference frame specifies the coordinate system in which a relation is interpreted. In the cited literature, three spatial families recur. Egocentric or viewer-centric frames attach the coordinate system to the observer or camera; allocentric or world-centric frames use a fixed global scene axis; intrinsic or object-centric frames define relations relative to an object’s own orientation. More recent work adds target-centric allocentric frames, in which a local frame is instantiated around a query-relevant anchor, and task-relevant frames, in which the anchor is inferred from the geometry and dynamics of a demonstration rather than from a predefined object model [2207.02624] [2408.04034] [2509.00310] [2602.05789].

Task grounding differs from generic localization because the correct frame is often part of the inference problem. In GRiD-A-3D, relative-direction reasoning is explicitly defined in the intrinsic frame of the reference object, not in the camera frame [2207.02624]. In SG3D, plans are generated from scene graphs and predominantly use allocentric or object-centric phrasing, while embodied execution may require maintaining the egocentric camera transform $T_{w \leftarrow c}$ as the agent moves [2408.04034]. In TReF-6, the relevant frame is neither a canonical object frame nor a tool frame; it is a latent “influence point” and its induced $SE(3)$ frame, inferred from a single trajectory and then semantically grounded in the scene [2509.00310].

The same principle extends beyond spatial reasoning. TUuD defines a temporal frame of reference in which relations are interpreted relative to a deictic origo, the current “now,” and evaluates whether LLM judgments change appropriately when that origo is moved along a timeline [2510.16685]. This suggests that reference-frame grounding is best understood as a general problem of viewpoint selection and viewpoint-consistent inference, rather than as a purely geometric subproblem.

## 2. Mathematical representations

Reference-frame task grounding is usually formalized through explicit coordinate transforms. In intrinsic spatial reasoning, GRiD-A-3D defines a reference object basis $(u_R, v_R, w_R)$ and transforms the target displacement $d = x_T - x_R$ into object-centric coordinates by
$$
d' = M_R^\top d, \qquad M_R = [u_R \; v_R \; w_R].
$$
Front/back, right/left, and above/below are then decided from the signs of the components of $d'$; in the dataset’s planar setting, horizontal direction labels are derived from the 2D projection of this transformed vector [2207.02624].

In manipulation, TReF-6 represents a Task-Relevant Frame as a full rigid transform
$$
\mathbf{T} =
\begin{bmatrix}
\mathbf{R} & \mathbf{t}\\
\mathbf{0}^\top & 1
\end{bmatrix},
$$
with $\mathbf{R} \in SO(3)$ and $\mathbf{t} \in \mathbb{R}^3$. World points are mapped into the local frame by
$$
\mathbf{x}_{\text{local}} = \mathbf{R}^\top(\mathbf{x}_{\text{world}} - \mathbf{t}),
$$
and DMPs are fit and executed in these local coordinates rather than in the world frame [2509.00310]. The key innovation is that the origin is set at an inferred influence point $p^\star$ that maximizes directional agreement between the trajectory’s acceleration and directions pointing to $p$.

In explicit allocentric frame instantiation, Allocentric Perceiver reconstructs geometry in a world frame $F_w$, defines a query-conditioned target-centric frame $F_t = \{O, R\}$, and transforms points by
$$
X_t = R^\top(X_w - O).
$$
The rotation $R$ is built from a forward axis derived either intrinsically from the reference object’s facing direction or extrinsically from an auxiliary object, together with a default “down” axis and an orthogonal right axis [2602.05789].

SATURN generalizes this to anchor-conditioned predicate computation. For anchor $a = (x_a, R_a)$ and entities $i,j$, the relative displacement is
$$
\Delta^a_{ij} = R_a^\top(x_i - x_j),
$$
and soft predicate scores take the form
$$
S_r^a[i,j] = \sigma\!\left(\frac{h_r(\Delta^a_{ij}, R_i^a, R_j^a)-m_r}{\tau_r}\right).
$$
Directional relations, directional combinations, and orientation relations are all expressed through this anchor-conditioned interface, which allows camera-centric, object-centric, and virtual-viewer frames to be composed in one program [2606.22694].

Temporal grounding adopts an analogous formal structure. TUuD pairs a target event time $t_x$ with a moving reference point $t_{\text{now}}$ and asks models to score
$$
S(t_x; t_{\text{now}}) \in [0.00, 1.00],
$$
with aggregation by distance bins. The resulting profile is evaluated for a peak at $\Delta t = 0$ and decline into past and future as the deictic anchor shifts [2510.16685].

## 3. Methodological families

One major family keeps the frame fixed and learns to ground directly in that representation. Referring Transformer operates entirely in the image’s 2D reference frame. It uses 2D sine/cosine positional encodings, contextualized lingual queries, and one-step decoding to regress normalized boxes $(x_c, y_c, w, h)$ and segmentation masks without proposal generation or Hungarian matching [2106.03089]. GTI extends the same image-plane grounding problem to video by decomposing Tracking by Language into Grounding, Tracking, and Integration, then using learned $R$-scores and $T$-scores to decide whether to trust per-frame grounding or template-based tracking [1912.06316].

A second family treats the frame itself as an inferred latent variable. TReF-6 infers a task-relevant $6\mathrm{DoF}$ frame from a single trajectory, semantically anchors it with a VLM and Grounded-SAM, and then uses that frame to parameterize DMP execution in novel scenes [2509.00310]. Allocentric Perceiver similarly argues that perspective shift should be offloaded from implicit VLM reasoning to explicit computation: it reconstructs metric 3D state, instantiates a target-centric frame consistent with the query, and discards raw images at the final reasoning stage in favor of geometry-grounded text [2602.05789].

A third family combines explicit frame construction with symbolic or soft-logical reasoning. SATURN reconstructs an approximate 3D scene, derives soft perspective-aware predicates under chosen anchors, and composes them with a training-free Pythonic executor. The reasoning layer is not hard-thresholded; uncertainty is preserved through multi-hop inference by fuzzy operators such as $\min$ for conjunction and $\max$ for disjunction [2606.22694]. This design is distinct from purely neural VLM pipelines, which the paper argues degrade sharply as frame complexity and reasoning depth increase.

A fourth family emphasizes temporal or sequential context. SG3D frames grounding as stepwise selection of a target object sequence aligned to a multi-step plan, and SG-LLM introduces multiple special $[\mathrm{GRD}]$ tokens so that a 3D LLM can predict grounded objects across steps while maintaining discourse context [2408.04034]. TrackTeller addresses dynamic 3D driving scenes by grounding the current-frame referent from multi-frame LiDAR and image inputs, using UniScene fusion, language-aligned decoding, a memory bank, and FutureReg to merge current and propagated proposals [2512.21641]. ToG-Bench makes the same shift in egocentric video, where one instruction may require explicit-implicit dual grounding and one-to-many grounding across time in the moving first-person image plane [2512.03666].

## 4. Embodied manipulation, navigation, and assistance

Reference-frame task grounding is especially consequential in robotics because execution must preserve task intent under geometric variation. TReF-6 is a one-shot imitation framework that learns a task-relevant $6\mathrm{DoF}$ reference frame from a single human demonstration and uses it to parameterize a motion primitive that generalizes across object placements, orientations, and local geometry. In real robot experiments on a Kinova Gen3 with one demo per task, it reported overall success of $53.3\%$ versus $20.0\%$ for a baseline DMP in peg-in-hole dropping, $66.7\%$ versus $8.3\%$ in cabinet door opening, and $66.7\%$ versus $33.3\%$ in surface wiping [2509.00310].

In task-oriented 3D scene grounding, SG3D defines a mapping $f : (S, T) \rightarrow O$ from a reconstructed scene and multistep task plan to a sequence of grounded objects. The benchmark contains 22,346 tasks, 112,236 steps, and 4,895 real scenes. Fine-tuned models still show substantial difficulty with multi-step consistency: around $60.9\%/30.6\%$ step and task accuracy for 3D-VisTA overall, around $57.3\%/26.8\%$ for PQ3D, and around $62.8\%/34.1\%$ for LEO/SG-LLM, with the last performing best overall [2408.04034].

Human-assistance systems expose another variant of the same problem. Speech-to-Spatial grounds spoken instructions to an AR world frame $F_{\text{world}}$ for relations such as left, right, above, below, in front of, and behind, while using camera and user frames for visibility and occlusion tests. In a study with $N=18$, it reported locate-task median times of $3.25 \pm 0.53$ s for Summary, $4.08 \pm 0.40$ s for Full, and $4.33 \pm 0.41$ s for Audio, with Summary significantly faster than both; in the move task it reported mean times of $6.33 \pm 1.07$ s, $7.94 \pm 1.22$ s, and $9.31 \pm 2.28$ s, respectively [2602.03059].

MICA grounds later assistance to a single egocentric demonstration by segmenting it into sub-tasks using gaze or speech, selecting keyframes, generating captions that encode intent and constraints, and retrieving the most relevant segments at question time. On 415 live questions from new users across 32 single-demonstration activities, frame-only retrieval was substantially weaker than multimodal grounding: Frames-as-Context with GPT-4o reached $48.4\% \pm 2.3$, Eye Gaze alone $55.4\% \pm 2.5$, Speech alone $59.4\% \pm 2.2$, Eye Gaze + Speech $62.2\% \pm 2.3$, and Eye Gaze + Speech + Summary $66.5\% \pm 2.2$ [2505.01578].

## 5. Dialogue, common ground, and temporal perspective

In dialogue, reference-frame grounding becomes a problem of establishing and reusing common ground under partial observability and perspective mismatch. The reference-centric model for OneCommon uses a structured reference resolver, a dot-indexed recurrent memory, and pragmatic generation that explicitly favors utterances resolvable by a listener. On static corpus evaluation it reported choice accuracy of $83.3 \pm 1.2$, compared with $69.3 \pm 2.0$ for the reimplemented prior baseline, and in human evaluation at overlap size 4 it achieved $46.0\%$ success versus $30.6\%$ for UA’20 [2109.05042].

The common-ground literature makes explicit that acknowledgment behavior is not sufficient evidence of grounding. IndiRef evaluates whether systems can later exploit shared relational knowledge in situated dialogues, including temporal, spatial, attributive, and inferred references, with perspective-sensitive deictics such as “my” and “your.” The evaluated full-dialog baselines showed that no model exceeded $50\%$ accuracy across all categories, and the paper argues for explicit representations such as typed knowledge graphs with speaker attribution and chronological event logs [2601.09365].

Temporal frame grounding extends the same concerns from space to time. TUuD derives 19,448 time-event pairs and 6,100 event-event pairs from TimeQA-style timelines and asks models to rate the similarity between “now” and target events as the deictic anchor shifts. All four evaluated LLMs showed a clear peak near $\mathrm{dist}=0$ and a decline as $|\mathrm{dist}|$ increased; adaptation was consistent within approximately $\pm 50$ years but weakened beyond that range, with more variance in far-term judgments [2510.16685]. This suggests that temporal common ground, like spatial common ground, is highly sensitive to explicit frame specification and dynamic re-anchoring.

## 6. Benchmarks, metrics, and empirical patterns

The field now spans a broad range of diagnostic and application-driven benchmarks. GRiD-A-3D isolates intrinsic spatial grounding in synthetic VQA with 8,000 rendered images, 432,948 questions, six task types, and a controlled answer distribution. It showed that Existence and Orientation are learned earlier than relation-centric tasks, and that training can converge up to three times faster than on GRiD-3D while maintaining or improving performance on relation tasks [2207.02624].

Sequential and embodied benchmarks expose different failure modes. SG3D reports step accuracy and task accuracy for multistep object grounding in real 3D scenes [2408.04034]. ToG-Bench, built on egocentric ScanNet trajectories, contains 100 clips, 2,704 task-oriented instructions, and 4,194 object instances across 177 functional categories, and evaluates recognition, temporal grounding, spatial grounding, task aggregation, and strict all-or-nothing task metrics; it reports large explicit-versus-implicit and single-object-versus-multi-object gaps, with GPT-5 achieving T-Acc $89.42\%$ but T-m_vIoU only $29.88\%$ [2512.03666].

Dynamic-scene grounding has introduced tracking-style metrics into the frame-grounding literature. TrackTeller evaluates temporal multimodal 3D grounding on NuPrompt using AMOTA, AMOTP, Recall, TID, and FAF. The abstract reports a 70% relative improvement in Average Multi-Object Tracking Accuracy and a 3.15–3.4 times reduction in False Alarm Frequency over strong baselines; at $\tau=0.3$, the model achieves AMOTA $18.79$, Recall $28.42$, AMOTP $1.63$, TID $8.08$, and FAF $147.6$ [2512.21641].

Multi-perspective spatial reasoning benchmarks have become more explicit about frame composition. Allocentric Perceiver reports consistent and substantial gains of approximately 10% on allocentric tasks across multiple VLM backbones while maintaining strong egocentric performance [2602.05789]. SATURN introduces 3D FORCE, which controls reasoning depth, view, and frame composition across spatial arrangement grounding and referring expression grounding, and reports $88.85\% \pm 0.55$ overall on 3D FORCE and $78.57\%$ overall accuracy on MindCube, outperforming the strongest baseline on the latter by 14 percentage points [2606.22694].

A common empirical pattern across these benchmarks is that performance drops when relations must be interpreted under nondefault frames, when frame choice changes within a query, or when early grounding errors propagate across time. This pattern is directly documented in SG3D, ToG-Bench, TrackTeller, Allocentric Perceiver, and SATURN [2408.04034] [2512.03666] [2512.21641] [2602.05789] [2606.22694].

## 7. Limitations and open problems

Current methods remain limited by perception quality, ambiguity, and frame-selection errors. TReF-6 failures correlate with segmentation errors and depth noise; its assumptions include rigid objects, quasi-static contact during the relevant phase, and RGB-D visibility for surface-normal estimation [2509.00310]. Allocentric Perceiver depends on accurate 3D recovery and uses camera $+Y$ as the default down axis, which the paper notes may conflict with gravity-aligned interpretations when pitch or roll are large [2602.05789]. SATURN still inherits errors from reconstruction, orientation estimation, and pose-constraint extraction, even though soft predicates are more robust than hard geometric thresholds [2606.22694].

Sequential settings remain difficult because errors compound. SG3D identifies allocentric-versus-egocentric ambiguity, clutter, ambiguous prepositions, and early mis-groundings that lower task accuracy disproportionately relative to step accuracy [2408.04034]. ToG-Bench reports steady degradation of temporal and spatial localization with longer videos even when recognition remains relatively stable, and explicitly notes the absence of 3D camera or world coordinates in its current annotation format [2512.03666]. TrackTeller mitigates occlusions and viewpoint changes with FutureReg and memory-based retrieval, but crowded scenes and vague temporal language remain challenging [2512.21641].

Human-centered systems face related but distinct limitations. Speech-to-Spatial currently grounds spatial relations only in an allocentric, axis-aligned world frame and does not yet support egocentric expressions such as “to your right” or complex chained relations such as “second to the right of” and “in between” [2602.03059]. MICA depends on eye-tracking quality, speech quality, camera field of view, and prompt-time context length, and it has not fully tested generalization to entirely new environments [2505.01578]. In dialogue, the ontology-based common-ground approach in IndiRef can merge near-duplicate contexts, especially in highly similar multimodal settings such as Spot the Difference [2601.09365].

The most consistent research direction is to make frame choice explicit rather than implicit. The surveyed work points to several compatible strategies: explicit coordinate transforms and frame instantiation, task-conditioned local frames, persistent common-ground memory with speaker attribution, uncertainty-preserving symbolic composition, and benchmark designs that separate egocentric, intrinsic, allocentric, and temporal deictic reasoning [2207.02624] [2509.00310] [2510.16685] [2601.09365] [2606.22694]. A plausible implication is that future systems will increasingly treat frame selection, frame maintenance, and frame switching as first-class inference problems rather than as fixed preprocessing conventions.

Source: https://www.emergentmind.com/topics/reference-frame-task-grounding