Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

灵巧操作PaperManipulation

Pose-Aware Modeling to Mitigate Pose-Related Artifacts in Tactile Gloves

Tactile gloves digitize contact and force during hand-object interactions, enabling robotics applications in dexterous manipulation, teleoperation, and learning from demonstration. To preserve hand dexterity and capture the nuances of natural interactions, these gloves and the integrated tactile sensors are designed to be soft, flexible, and comfortable. However, such flexible sensors are sensitive not only to contact forces but also unavoidably to hand pose changes, resulting in pose-related artifacts (PRAs). PRAs are especially problematic in the low-force range, resulting in misdetections or late-onset detections of contact, which raises the minimum detectable force (MDF) of the glove. In this work, we characterize the PRAs in relation to pose and force. Building on these insights, we introduce a glove-agnostic algorithmic framework that leverages hand pose information, which is increasingly available, to mitigate PRAs without glove modifications. Our pose-aware force estimation model augments tactile-to-force pipelines with a residual prediction branch that explicitly accounts for pose-induced sensor deformations. We validate our approach across 3 glove designs and 15 users, reducing MDF by 10.4%, 12.2%, and 18.3%, with consistent improvements across all evaluated metrics. This method provides a practical path to improving the usability of tactile gloves in data collection and diverse robotic applications.

Tianhong Catherine Yu, Ziyi Kou, Mia Huang, Taylor Niehues, Yiyue Luo, Li Guan, Dingtian ZhangJuly 25, 20264 min read
中文
Authors (see paper)
arXiv:2607.22964

One-Sentence Summary

This paper defines and characterizes Pose-Related Artifacts (PRAs) in tactile gloves — finger bending alone produces tactile signal changes comparable to light touch — and proposes a pose-aware force estimation model with a residual prediction branch using hand pose information, reducing minimum detectable force (MDF) by 10.4%-18.3% across 3 glove designs and 15 users.

Figure 1. Pose-related artifacts illustration

Figure 1 — Finger bending produces tactile signal changes without external contact (PRA), comparable to a 1.1N tap.

1. Background and Motivation

Tactile gloves digitize contact and force during hand-object interactions, supporting dexterous manipulation, teleoperation, and learning from demonstration. To preserve hand dexterity, gloves and sensors must be soft, flexible, and comfortable. But flexible sensors are sensitive not only to contact forces but also unavoidably to hand pose changes, producing Pose-Related Artifacts (PRAs).

PRAs are especially harmful in the low-force range: causing misdetections or delayed contact detection, raising the Minimum Detectable Force (MDF). Bending a finger in air produces tactile signal changes comparable to a 1.1N (112.2gF) tap. Existing solutions require hardware modifications or frequent calibration, impractical for natural interactions.

2. Core Method

2.1 PRA Characterization

Systematically characterizes PRAs in relation to pose and force. Key finding: PRAs are consistent across sensor and glove designs, indicating they arise from inherent force-strain coupling rather than specific hardware implementations.

2.2 Pose-Aware Force Estimation Model

Proposes a glove-agnostic algorithmic framework leveraging increasingly available hand pose information to mitigate PRAs, without glove hardware modifications. The model adds a residual prediction branch to the tactile-to-force estimation pipeline, explicitly modeling pose-induced sensor deformations.

Force estimation formula:

$$\hat{F} = f_{base}(s_{tactile}) + \Delta f(s_{tactile}, \mathbf{p}_{pose})$$

where $f_{base}$ is the baseline tactile-to-force mapping, $\Delta f$ is the pose-aware residual term, $s_{tactile}$ is the tactile signal, and $\mathbf{p}_{pose}$ is the hand pose.

Figure 2. Real-time PRA mitigation

Figure 2 — Real-time PRA mitigation: (A) in-air movements and (B) touch events.

flowchart LR
    A["Tactile Signal
s_tactile"] --> B["Base Force Estimator
f_base"] A --> C["Residual Branch
Δf(s, p)"] D["Hand Pose
p_pose"] --> C B --> E["Σ"] C --> E E --> F["Corrected Force
F̂ = f_base + Δf"] style C fill:#e0e7ff,stroke:#2563eb style F fill:#dcfce7,stroke:#16a34a

3. Experimental Results

Validated on 3 different tactile glove designs and 15 users.

GloveBaseline MDF (N)Pose-Aware MDF (N)MDF Reduction
Glove 10.770.6910.4%
Glove 20.820.7212.2%
Glove 30.710.5818.3%

All evaluation metrics show consistent improvements. Method retrofittable to existing tactile gloves without hardware modifications.

4. Main Contributions

  • PRA characterization: Systematically characterizes PRAs in tactile gloves, providing insights for modeling force estimation and hand-object interaction.
  • Pose-aware force estimation model: Multimodal model fusing hand pose modality via residual learning to correct PRAs.
  • Multi-glove validation: 3 gloves, 15 users, MDF reduced by 10.4%-18.3%, consistent improvements across all metrics.

5.

Force prediction

$$ \hat{\mathbf{F}}_{t}=\hat{\mathbf{F}}_{t}^{\text{base}}(\mathbf{T}_{t})-\hat{\mathbf{F}}_{t}^{\text{residual}}(\mathbf{T}_{t},\mathbf{P}_{t}) $$

Positional encoding

$$ \mathbf{P}_{t}^{\text{enc}}=[\sin(\mathbf{P}_{t}),\cos(\mathbf{P}_{t})] $$

Fused features

$$ \mathbf{Z}_{t}=\left[\mathbf{T}_{t}^{\text{feat}},\mathbf{P}_{t}^{\text{feat}},\mathbf{T}_{t}^{\text{feat}}\odot\mathbf{P}_{t}^{\text{feat}}\right] $$

Force loss

$$ \mathcal{L}_{\text{final\_force}}=\text{MAPE}(\hat{\mathbf{F}},\mathbf{F})=\frac{1}{N}\sum_{i=1}^{N}\frac{|\hat{F}_{i}-F_{i}|}{1+F_{i}} $$

Key Hyperparameters
ParameterValueDescription
Learning rate1e-4Adam optimizer
Batch size256Training batch
Discount $\gamma$0.99Reward discount
Epochs5000Training iterations
Figure 2

Figure 2: Additional results from the paper.

Limitations and Future Work

Limitations:

  • Only analyzes index fingertip tactile signals; other fingers and locations not covered.
  • Pose information depends on external sources (mocap/vision/wearable sensors), introducing additional latency.
  • PRA patterns may vary with glove aging and wear differences.

Future work: Extend to full-hand multi-finger tactile signals, with online adaptive calibration for glove changes.

6. Conclusion

The core contribution is defining and characterizing Pose-Related Artifacts (PRAs) in tactile gloves, and proposing a pose-aware force estimation model to mitigate them. By adding a residual prediction branch to the tactile-to-force estimation pipeline, using increasingly available hand pose information to explicitly correct pose-induced sensor deformations, without glove hardware modifications. On 3 gloves and 15 users, MDF is reduced by 10.4%-18.3% with consistent improvements across all metrics, providing a practical improvement path for tactile glove usability in data collection and robotic applications.

Finger bending is not force — decoding the artifacts in tactile signals with pose awareness.

Related Papers

Pre-training Visual Dexterity in Simulation

Pre-training Visual Dexterity in Simulation

Large-scale pre-training has made robot policy fine-tuning increasingly data-efficient, but this progress has largely been driven by datasets and embodiments built around simple parallel-jaw grippers. Dexterous, multi-fingered hands remain comparatively data-starved because real teleoperation is costly to scale, while human hand video is off-embodiment and requires lossy pose estimation and retargeting. We introduce Simulation Pre-training for Dexterity (SPD), a pre-training framework for dexterous manipulation that uses data entirely collected in simulation. In SPD, humans manipulate virtual objects inside a VR headset, enabling on-embodiment trajectories and robot-free collection. With the help of five operators, we collect 75 hours of multi-task dexterous manipulation over one week, and use it to pre-train a causal transformer on a sequence modeling objective. We study the benefits of simulation pre-training on real-world tasks by fine-tuning on 1-2 hours of physical demonstrations on a 56-DoF bimanual dexterous setup. We find that our approach outperforms training behavior cloning policies from scratch, showing that simulation teleoperation is a viable pre-training source for real-world dexterous manipulation. We perform ablation studies, measuring the benefits of history conditioning and short action chunks for reactive control.

灵巧操作灵巧手预训练Aug 16, 2026
G0.5: One Autoregressive Stream for Robot Reasoning and Action

G0.5: One Autoregressive Stream for Robot Reasoning and Action

G0.5 is a pretrained autoregressive VLA in which a single transformer decoder emits reasoning and action tokens under one objective. A cross-embodiment action tokenizer, a native chain-of-thought stream, and a visual memory module make this tractable at foundation-model scale, letting the pretrained VLM capabilities carry over to physical behavior. It surpasses pi-0.5 and GR00T-N1.7 across 7 regimes including real-world R1 robot fine-tuning, BEHAVIOR Challenge, DROID zero-shot transfer, LIBERO, RoboTwin 2.0 and SimplerEnv.

VLA具身智能自回归Aug 12, 2026
Cross-Embodiment Robot Manipulation via a Unified Hand Action Space

Cross-Embodiment Robot Manipulation via a Unified Hand Action Space

Robot manipulation policies are typically tied to specific robotic hand embodiments, limiting the transfer of learned behaviors across platforms with different kinematic structures. In this work, we propose the Unified Hand Action Space (UHAS), a sphere-based unified action representation for cross-embodiment dexterous manipulation. UHAS represents robotic hand actions as geometric deformations of a canonical sphere and uses a Cascade Inverse Kinematics (CIK) algorithm to map the shared representation to embodiment-specific joint configurations. Using reinforcement learning, we train dexterous manipulation policies directly in the proposed action space for in-hand cube reorientation tasks. We evaluate our method in both simulation and real-world experiments across multiple robotic hands, including the Allegro Hand, LEAP Hand, Shadow Hand, and MANO Human Hand. Experimental results demonstrate effective dexterous manipulation, zero-shot transfer to unseen hands, rapid finetuning across embodiments, and successful real-world deployment.

灵巧操作Dexterous Manipulation统一动作空间Jul 3, 2026
CoorDex: Coordinating Body and Hand Priors for Continuous Dexterous Humanoid Loco-Manipulation

CoorDex: Coordinating Body and Hand Priors for Continuous Dexterous Humanoid Loco-Manipulation

Humanoid loco-manipulation is often simplified into a stop-and-go process: walking to an object, stopping to manipulate it, and then resuming locomotion. It also commonly relies on low degree-of-freedom (DoF) end effectors that behave like an open-close grasp primitive. We introduce CoorDex, a learning pipeline that converts high-dimensional body and dexterous hand control into coordinated latent residual control, enabling high-DoF dexterous loco-manipulation on the move. Starting from simulated whole-body and hand demonstrations, CoorDex trains privileged motion tracking teachers for the humanoid body and dexterous hand, distills them into proprioception-conditioned latent priors, and uses the frozen priors as the action space for downstream residual reinforcement learning. A coordinated latent residual policy composes these priors through shared task context and separate body-hand residual heads, preserving natural whole-body motion while improving finger-level contact reliability. CoorDex enables a Unitree G1 humanoid with a 20-DoF WUJI hand to execute dexterous manipulation while in motion, including non-stop bottle grasping and carrying, fridge door opening on the move, and cube pick-and-turn. Ablations on the walk-grasp-carry task show that joint-space PPO, joint-space hand control, and monolithic latent prediction all fail under the same reward budget, while the latent-prior interface and coordinated residual structure make high-dimensional contact-rich loco-manipulation trainable. Project Page: https://skevinci.github.io/coordex/

人形机器人loco-manipulation灵巧操作Jun 22, 2026