TacSE3: Equivariant SE(3) Motion Estimation from Low-Texture Visuotactile Images for In-Gripper Tracking and Compensation
- 01Texture-Free Tactile Motion Estimation That Actually Generalizes
- 02Dual-Sensor Configuration Eliminates a Fundamental Ambiguity
- 03Plug-In Tactile Compensation Without Policy Retraining
- 04SE(3) Formulation Gives Physically Interpretable, Frame-Consistent Output
- 05120 Hz Sensing at Low Computational Cost
The Core Problem Being Solved: When a robot grips an object, that object can subtly shift, rotate, or slip — and cameras can't see it because the gripper is in the way. TacSE3 uses fingertip tactile sensors to detect and measure exactly how the object is moving inside the grip, then feeds that signal back to correct the robot's actions in real-time, without retraining the underlying policy.
1. Key Themes
Texture-Free Tactile Motion Estimation That Actually Generalizes
Most tactile sensing pipelines implicitly assume that the sensor surface or the object surface has enough texture or visual features to track. TacSE3 throws that assumption out entirely. Instead of tracking image features, it converts tactile deformation into a 3D force field (separating tangential shear forces from normal forces) and fits a rigid-body motion model to that field.
The practical payoff: it works on smooth, symmetric, textureless objects — exactly the objects where every other method breaks down. Across 8 test objects including polished spheres, cylinders, and ellipsoids, rotation estimation errors ranged from 2.6° to 4.0° at 30° of commanded rotation (Table III, Section V-C). As the authors note: "the method performs well on smooth and weak-texture objects such as the large sphere (2.9°), ellipsoidal object (3.6°), cylindrical object (2.8°), and wooden cube (3.2°), indicating that accurate rotation estimation does not depend on distinctive tactile texture."
Dual-Sensor Configuration Eliminates a Fundamental Ambiguity
A single fingertip sensor cannot reliably distinguish between the object translating versus rotating — both produce similar deformation patterns on one sensor. This is not a calibration problem; it's a fundamental observability problem.
Using two opposing fingertip sensors resolves this. When the object translates, both sensors see force fields in the same direction. When it rotates, the sensors see opposing force patterns. TacSE3 exploits this geometric symmetry with a simple sign-correction fusion formula.
The quantitative impact is dramatic: under pure translation, a single sensor produces 9.80° of spurious rotation drift (false rotation signal). The dual-sensor configuration reduces this to 1.10° — nearly a 10x improvement (Table II, Section V-B): "the dual-sensor configuration reduces rotational drift to approximately 3°, which is consistent with the small-angle (30°) rotation-estimation error reported in Table I."
Plug-In Tactile Compensation Without Policy Retraining
The most commercially relevant finding: TacSE3's rotation estimate can be bolted onto an existing trained policy as a post-processor, with no retraining required. The correction is additive — the policy's nominal action command is augmented with a tactile correction term derived from the estimated in-gripper rotation.
Testing on three tasks (drawing a circle, gear insertion, peg-in-hole) using ACT (Action Chunking with Transformers) as the base policy, with a human deliberately rotating the grasped object mid-execution:
- Gear Insertion: base policy 20% success under disturbance → 35% with TacSE3 (+75% relative improvement)
- Drawing: 40% → 50% (+25%)
- Peg-in-Hole: 25% → 45% (+80%)
(Table IV, Section V-D)
"After enabling the proposed post-processor, success rates improve in every task, suggesting that the estimated tactile rotation provides actionable feedback for online pose adaptation."
SE(3) Formulation Gives Physically Interpretable, Frame-Consistent Output
Rather than outputting a raw tactile image embedding or a learned latent, TacSE3 outputs a standard SE(3) rigid-body transform — translation vector + rotation matrix in the end-effector frame. This is directly consumable by any robot controller without interpretation.
The equivariance property matters for deployment: "even if the robot arm changes its global pose or the object makes contact at different sensor locations, the same underlying local object motion should induce the same motion estimate when expressed in the end-effector frame, instead of producing inconsistent outputs due only to shifts in contact location or image appearance." (Section IV-E)
This means the same tactile module works regardless of where in the robot's workspace the manipulation is happening.
120 Hz Sensing at Low Computational Cost
The system runs on DM-Tac sensors at 120 Hz with 320×240 resolution. The core estimation pipeline is least-squares fitting over contact points — computationally trivial compared to neural inference. This matters for real-time closed-loop control where latency is a hard constraint.
2. Contrarian Perspectives
Tactile Sensing Should Precede Vision Integration, Not Follow It
The dominant paradigm in visuotactile manipulation is to fuse vision and touch — use vision for global state, touch to refine. TacSE3 implicitly challenges this by showing that for in-gripper state specifically, vision is the wrong primary modality, and touch can stand alone.
The authors are explicit: "We do not seek full object-level state estimation through visuotactile fusion; instead, we focus on recovering local rigid-body motion directly from tactile images and using that signal as a control-facing estimate of relative in-gripper motion." (Section II-B)
This is contrarian because most robotics companies building manipulation stacks treat tactile as an enhancement to vision, not as an independent geometric sensing channel. TacSE3's results suggest that for the specific problem of in-gripper pose drift, a tactile-only geometric approach outperforms vision-aided approaches (which fail under occlusion anyway).
You Don't Need to Retrain Your Policy to Get Tactile Robustness
The conventional assumption when adding a new sensing modality to a robot is that you need to retrain the policy end-to-end with that sensor included in the observation space. TacSE3 directly contradicts this.
The paper demonstrates that tactile-derived rotation can be added as a residual correction to an already-trained ACT policy with no policy modification: "This residual formulation enables geometry-aware adjustment without modifying the base-policy structure... This residual design allows the tactile geometric module to be seamlessly integrated into existing control pipelines, providing interpretable and physically consistent motion refinement without task-specific retraining." (Section IV-F)
For operators with already-deployed manipulation policies, this is significant: you can add disturbance recovery capability without re-collecting demonstrations or re-running training.
Force Fields Are More Robust Than Learned Representations for Contact-Local Motion
The machine learning community's default response to any perception problem is to learn an end-to-end representation. TacSE3 argues the opposite for this specific problem: a physics-derived intermediate representation (decoupled 3D force field + rigid-body model) outperforms learned correspondences in the low-texture regime.
"This choice is justified by the short-horizon contact model adopted in this paper: over sufficiently small sampling intervals, and in the absence of severe slip or gross non-rigid deformation, the deformation of the compliant sensing surface is locally coupled to the relative velocity of the object at the contact interface." (Section IV-C)
Most companies building tactile perception would reach for neural networks. The paper's results suggest that for geometry-focused contact estimation, classical physics-based modeling with appropriate intermediate representations is more reliable and more interpretable.
3. Companies Identified
Daimon Robotics
- Description: Hardware manufacturer of the DM-Tac visuotactile sensor, mounted on the DM-Tac G gripper platform used throughout all experiments
- Why relevant: The entire experimental validation runs on their hardware. Their sensor captures at 120 Hz / 320×240, producing deformation fields decomposable into normal and shear components. This is the primary sensing platform TacSE3 is built around and validated on
- Quote: "In our implementation, the tactile sensor is the DM-Tac VBTS from Daimon Robotics, mounted on the robotic gripper. The sensor captures tactile signals at 120 Hz with an image resolution of 320×240." (Section III)
Universal Robots (UR)
- Description: Industrial robot arm manufacturer; UR5 arm used as the manipulation platform throughout all experiments
- Why relevant: All policy-level experiments (Drawing, Gear Insertion, Peg-in-Hole) are conducted on UR5, establishing baseline deployment context for the compensation module
- Quote: "All experiments are conducted on the same robot arm (UR5) and gripper platform (DM-Tac G) so as to isolate the effect of the sensing and estimation method." (Section V)
GelSight (MIT spin-out) / Meta (DIGIT sensor)
- Description: GelSight is the canonical vision-based tactile sensor; DIGIT is Meta's commercialized derivative
- Why relevant: Both are cited as the sensors that established the VBTS paradigm TacSE3 is designed to complement. TacSE3's value proposition is specifically strongest for sensors with weaker texture response than GelSight-class sensors
- Quote: "Vision-based tactile sensors (VBTS), such as GelSight, Deltact, and DIGIT have enabled high-resolution observation of contact..." (Section I). "It is best used as a lightweight compensation module... especially for VBTS sensors with weak texture response and for smooth or symmetric textureless objects." (Abstract/Practitioners Note)
4. People Identified
Fei Meng — Hong Kong University of Science and Technology (HKUST), Corresponding Author
- Why notable: Co-leads the tactile sensing research at HKUST's Hong Kong Center for Construction Robotics. The construction robotics application domain (InnoHK-funded) signals interest in robust manipulation in unstructured environments — exactly where tactile-based in-gripper compensation matters most
- Quote: Corresponding author contact feimeng@ust.hk
Haobo Liang — HKUST, Corresponding Author
- Why notable: Co-corresponding author alongside Meng; based at HKUST's construction robotics center. Represents the applied robotics deployment side of the research
- Quote: Corresponding author contact hbliang@ust.hk
Michael Yu Wang — Great Bay University, Dongguan, China
- Why notable: Previously at HKUST (Guangzhou); his lab has produced prior foundational work directly underlying TacSE3, including the DelTact sensor (cited as [39]) and 3D contact point cloud reconstruction from tactile flow (cited as [8]). TacSE3 builds directly on this prior work — Wang's group has a multi-year program in physics-grounded tactile perception
- Quote: "A representative dense color-pattern VBTS pipeline [39] turns raw tactile images into a dense 2D displacement field by tracking the printed pattern..." — reference [39] is Zhang et al. (2022) DelTact, Wang's prior work (Section IV-B)
Zhongyuan Liao — HKUST, Lead Author
- Why notable: First author with prior work in quantitative hardness assessment from tactile sensing (cited as [23]), indicating a broader program in physics-grounded tactile perception beyond motion estimation
- Quote: Co-author on "Quantitative hardness assessment with vision-based tactile sensing for fruit classification and grasping" (arXiv:2505.05725), cited as reference [23]
5. Operating Insights
Dual Fingertip Sensors Are a Minimum Viable Configuration for In-Gripper Tracking
If you are deploying visuotactile sensors for in-gripper manipulation, a single sensor is insufficient for reliable 6-DoF state estimation. The translation-rotation ambiguity with a single sensor produces ~10° of spurious rotation error during pure translation — enough to cause policy failure in precision tasks. The dual-sensor fix is architectural, not algorithmic: it requires physical placement on opposing fingers.
Engineering implication: gripper designs for contact-rich manipulation should be spec'd with paired opposing tactile sensors from the start. Retrofitting single-sensor grippers will not achieve comparable performance. "Using two VBTSs mounted on opposing gripper fingers provides complementary observations of the same object motion. The two contact streams can therefore cross-validate one another and reduce the ambiguity between translation-induced and rotation-induced deformation." (Section III)
Tactile Compensation Modules Should Be Designed as Residual Add-Ons, Not Policy Inputs
The paper's most immediately deployable finding is architectural: treating the tactile rotation estimate as an additive correction to existing policy outputs, rather than as an additional observation fed into the policy, allows you to improve disturbance tolerance on already-deployed systems without re-collecting data or retraining.
For teams operating fleets of manipulation robots with trained policies already in production, this is the lowest-cost path to tactile-enhanced robustness. The tradeoff is that the correction is limited to what the local geometric estimate can measure — it won't recover from large disturbances or non-rigid contact. "The policy-level results further show that this rotational signal can improve an existing base policy without retraining the policy itself." (Section V-E)
6. Overlooked Insights
The Error Profile at Large Rotations Reveals Integration Drift as the Primary Failure Mode
The accuracy numbers at 30° are strong (3°), but the degradation curve to 90° is steep and consistent: errors roughly scale from 3° → 7° → 12° across all three axes (Table I, Section V-A). This ~13% relative error at 90° comes from accumulated integration drift, not from the instantaneous twist estimation being wrong.
This has a non-obvious architectural implication: TacSE3 is best deployed for incremental, small-motion compensation (which is the intended use case), but it cannot serve as a standalone absolute orientation tracker over extended manipulation sequences. Long-horizon manipulation tasks that involve cumulative object reorientation will require either periodic re-zeroing, fusion with a global pose reference, or a fundamentally different approach. The authors acknowledge this but bury it: "the expected error increases moderately with larger rotation angles due to accumulated integration drift and increased contact nonlinearity." (Section V-A)
For investors evaluating tactile sensing startups, this is a critical scope boundary: the technology solves disturbance recovery, not absolute in-hand pose estimation.
The Admission About Base Policy Absolute Performance Reveals How Hard These Tasks Are
The no-interference baseline performance of the ACT policy is notably low: 50% on Gear Insertion, 65% on Drawing, 75% on Peg-in-Hole (Table IV, Section V-D) — before any external disturbance is applied. These are not edge-case tasks; they are canonical precision manipulation benchmarks. The fact that a well-trained ACT policy achieves only 50-75% success under clean conditions signals that the base manipulation policy robustness problem is far from solved.
TacSE3's compensation brings disturbed performance partway back, but still leaves a significant gap below no-interference baselines. "Performance with interference also remains below the no-interference reference, which is expected because human perturbation introduces additional uncertainty that cannot be fully eliminated by local correction alone." (Section V-D)
This suggests the addressable market for tactile compensation modules is large — but also that tactile correction alone is insufficient and must eventually be combined with policy-level improvements.