Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

Spatial IntelligencePaper空间智能

FloAff-Kitchen: Bridging Navigation and Manipulation via Canonical and Progressive Floor Affordance Learning

Mobile manipulation requires robots to identify Floor Affordance (FloAff) that maximizes downstream manipulation success rather than merely ensuring navigation feasibility. FloAff prediction is a target-conditioned local spatial reasoning problem, yet existing methods suffer from representation ambiguity caused by irrelevant spatial context and arbitrary object orientations, while entangling shared and task-specific knowledge across heterogeneous manipulation skills. To address these challenges, we propose a unified framework for FloAff prediction from egocentric multimodal perception, consisting of canonical representation learning and progressive affordance prior learning. Specifically, we introduce a Canonical Floor Affordance Representation (CFAR), which learns canonical interaction geometry by preserving affordance-relevant local structure while eliminating nuisance spatial variations unrelated to robot base placement. We further propose Progressive Floor Affordance Learning (PFAL), which learns transferable FloAff priors from a foundation manipulation task and progressively adapts them to heterogeneous downstream manipulation skills. To facilitate systematic evaluation, we establish the first cross-scene, multi-view FloAff-Kitchen benchmark covering diverse manipulation skills, scene layouts, furniture styles, and viewpoints. Extensive experiments on three benchmark settings demonstrate that our method consistently outperforms strong baselines, while ablation studies validate the contribution of each proposed component. Project page: https://csu-hero-lab.github.io/FloAff-Kitchen_Web/

Ping Zhong, Manling Teng, Tao Wu, Bolei Chen, Jiazhi Xia, Jianxin WangJuly 27, 20266 min read
中文

1. Overview: Bridging Navigation and Manipulation via Canonical and Progressive Floor Affordance Learning

FloAff-Kitchen, proposed by Ping Zhong, Manling Teng, Tao Wu, Bolei Chen, Jiazhi Xia, and Jianxin Wang at Central South University (July 2026), is a unified framework for predicting FloAff (Floor Affordance) from egocentric multimodal perception. Mobile manipulation (MoMa) requires robots to determine base placements that maximize downstream manipulation success rather than merely ensuring navigation feasibility. FloAff prediction is a target-conditioned local spatial reasoning problem, but existing methods suffer from representation ambiguity—irrelevant spatial context and arbitrary object orientations cause inconsistent point cloud representations, and shared vs. task-specific knowledge is entangled across heterogeneous manipulation skills. This work proposes CFAR (Canonical Floor Affordance Representation) to learn canonical interaction geometry, preserving affordance-relevant local structure while eliminating nuisance spatial variations; PFAL (Progressive Floor Affordance Learning) to learn transferable FloAff priors from a foundation task and progressively adapt to heterogeneous downstream skills. It also establishes the first cross-scene, multi-view FloAff-Kitchen benchmark. Experiments consistently outperform strong baselines across three settings.

Side-view and front-view MoMa examples

2. Core Problem: Representation Ambiguity and Transfer Dilemma in FloAff Prediction

Mobile manipulation requires robots to determine base placement regions that support successful manipulation. FloAff prediction estimates such regions from egocentric observations, a fundamental capability bridging navigation and manipulation. Existing learning-based methods directly predict FloAff from complete scene observations, with two limitations: (1) FloAff is primarily determined by local interaction geometry around the manipulation target, while distant structures introduce irrelevant spatial context; (2) affordance-equivalent scenes under different target orientations produce inconsistent point cloud representations, causing representation ambiguity. The model must simultaneously identify affordance-relevant geometry and learn orientation invariance. Moreover, heterogeneous manipulation skills (hinged doors, drawers, pick-and-place) have distinct interaction dynamics; multi-task learning entangles transferable spatial reasoning with task-specific patterns, limiting cross-skill generalization.

3. Method: CFAR and PFAL

3.1 Canonical Floor Affordance Representation (CFAR)

CFAR is a target-conditioned scene representation preserving affordance-relevant local geometry while invariant to irrelevant spatial context and target orientation. Instead of directly learning $f_\theta(\mathcal{P}, \mathcal{S})$, it first applies a canonical transformation:

$$\hat{\mathcal{A}} = f_\theta\!\left(\mathcal{T}(\mathcal{P}, \mathcal{S})\right) \tag{3}$$

where $\mathcal{T}(\cdot)$ is the canonical transformation, $\mathcal{P}$ the point cloud, $\mathcal{S}$ the target specification. CFAR satisfies two properties: Affordance Relevance (preserve FloAff-relevant geometry, remove irrelevant context) and Orientation Consistency (map affordance-equivalent scenes to consistent representations).

Eliminating Irrelevant Spatial Context: FloAff primarily depends on local interaction geometry around the target, so a target-centered spherical point set is constructed:

$$\mathcal{P}_{\text{local}} = \left\{\mathbf{p}_i \in \mathcal{P} \,\middle|\, \|\mathbf{p}_i - \mathbf{t}\|_2 \leq r\right\} \tag{4}$$

where $\mathbf{t}=(x_t, y_t, z_t)$ and $r$ is the crop radius. Eliminating Orientation Ambiguity: Although local geometry is extracted, the same affordance pattern may correspond to different point clouds due to target orientation. CFAR uses AxisNet to transform arbitrary-oriented interaction geometry to a canonical orientation, mapping geometrically equivalent interactions to consistent representations.

CFAR and PFAL illustration

3.2 Progressive Floor Affordance Learning (PFAL)

Heterogeneous MoMa tasks share common spatial requirements for base placement (reachability, collision-free execution, visibility, manipulability)—shared FloAff priors—while different skills introduce task-specific constraints (hinge directions, sliding directions). Hypothesis 1: across heterogeneous skills, FloAff prediction benefits from a transferable latent representation capturing task-independent spatial reasoning, while task-specific knowledge can be progressively learned via representation adaptation. PFAL conceptually decomposes the latent as:

$$\mathbf{z} = \Phi(\mathbf{z}_s, \mathbf{z}_t), \quad \theta_{\text{pnp}} \to \theta_{\text{door,drawer}}$$

where $\mathbf{z}_s$ encodes shared priors and $\mathbf{z}_t$ task-specific constraints. Through a curriculum of increasing FloAff complexity, it first establishes transferable spatial reasoning on pick-and-place (foundation task), then adapts to hinge- and sliding-dependent patterns. Shared Prior Learning on $\mathcal{D}_{\text{pnp}}$:

$$\theta_{\text{pnp}} = \arg\min_\theta \frac{1}{|\mathcal{D}_{\text{pnp}}|} \sum_{(\hat{\mathcal{P}}, \mathcal{S}, \mathcal{A}) \in \mathcal{D}_{\text{pnp}}} \mathcal{L}_{\text{aff}}\!\left(f_\theta(\hat{\mathcal{P}}, \mathcal{S}), \mathcal{A}\right) \tag{6}$$

Progressive Adaptation: initialized from $\theta_{\text{pnp}}$, fine-tuned on door/drawer tasks, separating transferable spatial reasoning from task-specific patterns. The adaptation objective is:

$$\theta_{\text{door,drawer}} = \arg\min_\theta \frac{1}{|\mathcal{D}_{\text{task}}|} \sum \mathcal{L}_{\text{aff}}\!\left(f_\theta(\hat{\mathcal{P}}, \mathcal{S}), \mathcal{A}\right), \quad \theta_0 = \theta_{\text{pnp}}$$

4. FloAff-Kitchen Benchmark

Establishes the first cross-scene, multi-view FloAff-Kitchen benchmark covering diverse manipulation skills, scene layouts, furniture styles, and viewpoints. Data collection has three phases: scene generation, candidate base pose generation, collision-aware filtering, rollout-based affordance annotation, and multi-view observation collection.

Data collection process

5. Experiments

5.1 FloAff Prediction Comparison

MethodRMSE↓logMSE↓PCC↑SIM↑
PointNet++0.1640.01420.5650.589
VoteNet0.1670.01430.5430.570
H3DNet0.1740.01560.5030.522
NavAff0.1470.01150.6800.696
Ours (MoMa-Kitchen)0.0730.00280.7960.794
Ours (FloAff-Kitchen Styles)0.0290.00040.8630.862
Ours (FloAff-Kitchen Layouts)0.0350.00060.7380.721

On MoMa-Kitchen, RMSE drops from 0.147 to 0.073, PCC rises from 0.680 to 0.796. On FloAff-Kitchen Styles PCC reaches 0.863, Layouts 0.738—Styles changes only appearance, Layouts alters interaction geometry (harder), yet the method remains robust.

FloAff prediction quantitative evaluation table FloAff prediction qualitative results

5.2 Downstream MoMa Performance

MoMa success rates on FloAff-Kitchen: $SR_{\text{all}}$ significantly exceeds NavAff baseline on both Styles and Layouts. NavAff achieves $SR_{\text{all}}=0.37$ on Styles and $0.225$ on Layouts.

FloAff-Kitchen MoMa performance table
BenchmarkNavAff SR_allOurs SR_allImprovement
FloAff-Kitchen Styles0.37highersignificant
FloAff-Kitchen Layouts0.225highersignificant

6. Limitations

  • Crop radius $r$ sensitivity: CFAR's local spherical crop radius is preset; too small loses interaction geometry, too large introduces irrelevant context.
  • AxisNet dependency for canonical transform: Orientation normalization accuracy depends on AxisNet; generalization to unseen object shapes is limited.
  • Fixed curriculum order: PFAL's pnp→door/drawer curriculum is preset; optimal order for other heterogeneous skills remains to explore.
  • Simulation-only evaluation: FloAff-Kitchen is a simulation benchmark; real-world MoMa transfer capability is unverified.
  • Limited task types: Currently covers doors/drawers/pick-and-place; adaptation to more skills (pouring, folding) awaits extension.

7. Conclusion

This paper proposes a unified FloAff prediction framework: CFAR learns canonical interaction geometry via target-conditioned representation transformation, eliminating irrelevant context and orientation ambiguity; PFAL progressively acquires transferable FloAff priors from a foundation task and adapts to heterogeneous skills. The first cross-scene, multi-view FloAff-Kitchen benchmark is established. On MoMa-Kitchen and FloAff-Kitchen, both FloAff prediction and downstream MoMa performance consistently improve, demonstrating effectiveness and generalization. The core insight: affordance prediction accuracy depends on representation canonicity and transfer progression—first "straighten" then "crop" local interaction geometry, then "solidify" transferable spatial reasoning before "adapting"—ambiguity and entanglement dissolve naturally.

flowchart TD
    A["Egocentric multimodal obs P,S"] --> B["CFAR canonical transform T"]
    B --> C["Eliminate irrelevant context: spherical crop P_local"]
    B --> D["Eliminate orientation ambiguity: AxisNet normalization"]
    C --> E["Canonical representation P̂"]
    D --> E
    E --> F["PFAL progressive learning"]
    F --> G["Stage 1: pick-and-place foundation
learn shared FloAff priors θ_pnp"] G --> H["Stage 2: adapt to doors/drawers
task-specific constraints"] H --> I["FloAff prediction Â"] I --> J["Base placement decision"] J --> K["Navigation + manipulation execution"]
Affordance prediction accuracy depends on representation canonicity and transfer progression—first straighten then crop local interaction geometry, then solidify transferable spatial reasoning before adapting; ambiguity and entanglement dissolve naturally.

Related Papers

ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

Video spatial reasoning is essential for navigation-oriented perception and long-video question answering, where models must infer spatial relations across long horizons under changing viewpoints. However, existing multimodal large language models (MLLMs) remain largely semantic-centric, and often fail to reliably aggregate consistent spatial evidence from redundant video observations, leading to inefficient or unstable reasoning. To address these issues, we propose ConsiSpace, a geometry-consistency-aware framework for geometry-sensitive video spatial reasoning that turns spatial consistency into both an evidence organization principle and an explicit post-SFT learning signal. We build a geometry-consistent memory (GCM) including implicit evidence tokens and explicit geometric cues, and leverage efficient organization strategies to compactly preserve task-related spatial evidence. Furthermore, we utilize unified consistency self-supervised reinforcement learning (UC-SSRL) after supervised fine-tuning to improve cross-view stability, with answer-, metric-, and topology-consistency rewards. Extensive experiments on three spatial-reasoning benchmarks, VSI-Bench, OSI-Bench, and MMSI-Video-Bench, show consistent gains, improving the average score by 12.6 points over the strongest baselines.

Spatial IntelligencePaper空间智能Jul 20, 2026
IGGT4D: Streaming 4D Instance-Grounded Geometry Transformer

IGGT4D: Streaming 4D Instance-Grounded Geometry Transformer

Real-world spatial intelligence requires agents to understand scenes from continuous video streams, where objects move, persist, disappear, and reappear over time. While recent spatial foundation models have enabled generalizable feed-forward 3D reconstruction, most streaming methods remain geometry-centric and lack temporally consistent object-level understanding. Meanwhile, existing semantic reconstruction and 3D-aware vision-language methods largely rely on externally extracted 2D semantic cues or loosely coupled geometry inputs, limiting unified geometry-instance learning in long dynamic scenes. In this paper, we propose IGGT4D, a streaming instance-grounded geometry Transformer for online 4D scene understanding. IGGT4D processes video frames sequentially, reuses historical context through causal spatial-temporal modeling, and incrementally updates a unified representation of camera motion, geometry, and object identity. This enables long-sequence feed-forward reconstruction with geometry-instance consistency in dynamic environments. To address the lack of high-quality 4D supervision, we further construct InsScene4D-147K, a large-scale dataset spanning real/synthetic and static/dynamic scenes, with RGB images, depth, poses, and temporally consistent instance masks generated by an automated geometry-guided annotation pipeline. Experiments on 3D reconstruction, pose estimation, instance spatial tracking, and open-vocabulary segmentation demonstrate that IGGT4D outperforms existing streaming baselines while maintaining scalable online inference for long dynamic sequences.

Spatial IntelligencePaper空间智能Jul 21, 2026
Spatial-IQ: Deconstructing Spatial Intelligence via Hierarchical Capability Tests

Spatial-IQ: Deconstructing Spatial Intelligence via Hierarchical Capability Tests

Multimodal large language models (MLLMs) excel at visual interpretation but fail on spatial reasoning tasks that humans solve reliably. Existing benchmarks evaluate these models as black boxes, limiting their ability to identify the underlying causes of lower performance: when a model fails a spatial reasoning task, it remains difficult to ascertain whether the hurdle is perceptual, such as recognizing object boundaries, or cognitive, such as reasoning about occlusion to infer hidden geometry. We introduce Spatial-IQ, a hierarchical diagnostic framework that decomposes object counting in stacked 3D structures into 9 perceptual and cognitive sub-tasks organized by the developmental stages of human spatial cognition, with mental rotation as an additional target probe. Using NVIDIA Isaac Sim, we procedurally generated a diverse dataset of roughly 80,000 stacked 3D structures with per-task ground truth. We evaluate models across three output formats (free-response text, multiple-choice images, and image editing) alongside a human baseline. The Spatial-IQ framework shows that top-performing models often succeed at the target task (object counting) without succeeding on the lower-level sub-tasks intended to support it, and that models differ in how much of these hierarchical chains they preserve, often revealing shortcut behavior that raw target-task accuracy alone would obscure. Finally, we demonstrate that training models with chain-of-thought (CoT) supervision over our hierarchical sub-tasks, combined with reinforcement learning with verifiable rewards, significantly improves both spatial consistency across sub-tasks and target-task accuracy, supporting the value of the proposed decomposition as both a diagnostic tool and a training signal.

Spatial IntelligencePaper空间智能Jul 24, 2026
PlanCraft: Sketch, Refine, and Furnish for Architect-Inspired Progressive 3D Residential Scene Generation

PlanCraft: Sketch, Refine, and Furnish for Architect-Inspired Progressive 3D Residential Scene Generation

Two structural insights have been overlooked in automated residential floor plan generation. First, design is inherently progressive. Architects begin with rough strokes and refine them over time, whereas existing methods typically require their conditioning representation to be fully specified before generation, a fundamental mismatch with how design actually works. Second, the 2D floor plan is not an optional intermediate but an irreplaceable spatial contract. Once room boundaries, doors, and windows are fixed, furnishing reduces from open-ended spatial reasoning to bounded constraint satisfaction. Bypassing this contract, as existing 3D systems do by delegating layout to language models, yields overlapping rooms and implausible proportions; directly calling general-purpose language models likewise produces geometrically invalid layouts. Guided by these insights, we present PlanCraft. SketchPlan supplies the missing training signal by replaying the architect's drawing process on 80K real floor plans, producing partial sketches at every completeness level. PlanCraft-Diff progressively sharpens an incomplete sketch into a geometrically precise, vectorizable floor plan through a coarse-to-fine strategy. With the spatial contract established, PlanCraft-Agent then furnishes the scene within well-defined room boundaries. Experiments show that PlanCraft achieves a 61.1\% lower FID than the best existing 2D method and surpasses existing 3D systems by 15 points in expert-rated spatial rationality, with a sketch at only 25\% completion already outperforming all fully specified baselines.

Spatial IntelligencePaper空间智能Jul 26, 2026