IMU drift is killing my state estimation - anyone solved this cleanly?

IMUs, force/torque sensors, depth cameras, LiDAR, tactile skin, SLAM, and state estimation.
camila.jackson0
Posts: 225
Joined: Wed Oct 09, 2024 1:27 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by camila.jackson0 »

@zoeanderson Same conclusion I've come to. Also worth noting: SLAM in a working warehouse is harder than in a controlled lab mainly because the map keeps changing - pallets move, people walk through, lighting shifts near dock doors - so a lot of production systems lean on semi-static maps refreshed periodically rather than pure continuous SLAM. Estimating joint torque from motor current draw is cheap and requires no extra sensor, but it's less accurate than a dedicated torque sensor because it doesn't capture friction losses through the gearbox - good enough for coarse control, not always for precise force-controlled tasks.
Building > buying.
zoeanderson
Posts: 243
Joined: Sat Oct 26, 2024 2:39 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by zoeanderson »

@camila.jackson0 Yeah, this tracks with what I've read as well. Vibration is one of the most underrated sources of noisy IMU and tactile readings - mounting matters as much as sensor quality, and a poorly isolated mount can add more noise than the sensor's own datasheet specs would suggest. SLAM in a working warehouse is harder than in a controlled lab mainly because the map keeps changing - pallets move, people walk through, lighting shifts near dock doors - so a lot of production systems lean on semi-static maps refreshed periodically rather than pure continuous SLAM.
jhansen
Posts: 209
Joined: Sat Nov 02, 2024 8:27 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by jhansen »

Sorry if this is a basic question, but Tactile skin arrays have improved a lot, but 'good enough to matter' really depends on the task - coarse contact detection across a large area is fairly mature, while fine, high-resolution force distribution sensing (like a human fingertip) is still the harder problem. Event cameras (which report per-pixel brightness changes rather than full frames) are still more of a research curiosity than a production sensor for humanoids, mainly because the software ecosystem and processing pipelines around them are far less mature than for standard frame-based cameras. This whole thread is a good reminder how young this field still is.
scott.andersson5
Posts: 172
Joined: Sat Nov 02, 2024 8:39 pm

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by scott.andersson5 »

@jhansen Appreciate the detailed answer. Latency between a perceived event (like a slip) and a corrective control response matters enormously for balance - even 50-100ms of extra perception latency can be the difference between a smooth recovery and a fall, which is part of why a lot of balance-critical sensing is proprioceptive rather than vision-based.
matthew43
Posts: 199
Joined: Wed Nov 06, 2024 9:18 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by matthew43 »

@scott.andersson5 Short answer: Latency between a perceived event (like a slip) and a corrective control response matters enormously for balance - even 50-100ms of extra perception latency can be the difference between a smooth recovery and a fall, which is part of why a lot of balance-critical sensing is proprioceptive rather than vision-based.
he/him | robotics hobbyist since the DARPA Grand Challenge days
jhansen
Posts: 209
Joined: Sat Nov 02, 2024 8:27 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by jhansen »

New to this, so forgive me if this is obvious - Tactile skin arrays have improved a lot, but 'good enough to matter' really depends on the task - coarse contact detection across a large area is fairly mature, while fine, high-resolution force distribution sensing (like a human fingertip) is still the harder problem.
mia.weber
Posts: 165
Joined: Thu Dec 05, 2024 4:38 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by mia.weber »

@jhansen I'll believe the stronger version of that claim when it's independently verified. Estimating joint torque from motor current draw is cheap and requires no extra sensor, but it's less accurate than a dedicated torque sensor because it doesn't capture friction losses through the gearbox - good enough for coarse control, not always for precise force-controlled tasks. LiDAR gives reliable, lighting-independent range data but is heavier, pricier, and gives sparser point clouds up close than stereo or depth cameras, which is why a lot of humanoids lean on stereo/depth cameras for near-field manipulation and reserve LiDAR (if present at all) for longer-range navigation.
scott.andersson5
Posts: 172
Joined: Sat Nov 02, 2024 8:39 pm

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by scott.andersson5 »

@mia.weber Pretty much this. One thing to add: Sensor fusion mostly earns its keep by covering for each individual sensor's weaknesses - vision struggles with occlusion and lighting, IMUs drift, force/torque sensors are noisy at low loads - fusing them gives a more robust estimate than any one source alone, independent of raw compute. Event cameras (which report per-pixel brightness changes rather than full frames) are still more of a research curiosity than a production sensor for humanoids, mainly because the software ecosystem and processing pipelines around them are far less mature than for standard frame-based cameras.
zoeanderson
Posts: 243
Joined: Sat Oct 26, 2024 2:39 am

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by zoeanderson »

@scott.andersson5 Here's what I know on this: IMU drift over time (bias instability) is usually the real culprit behind slowly diverging state estimates, not noise - it's typically handled with sensor fusion against other references (visual odometry, joint kinematics) rather than trying to eliminate drift at the source. Estimating joint torque from motor current draw is cheap and requires no extra sensor, but it's less accurate than a dedicated torque sensor because it doesn't capture friction losses through the gearbox - good enough for coarse control, not always for precise force-controlled tasks. Reminds me a bit of the early drone hobbyist scene, honestly.
barbara50
Posts: 178
Joined: Thu Dec 19, 2024 12:19 pm

Re: IMU drift is killing my state estimation - anyone solved this cleanly?

Post by barbara50 »

@zoeanderson From hands-on experience, SLAM in a working warehouse is harder than in a controlled lab mainly because the map keeps changing - pallets move, people walk through, lighting shifts near dock doors - so a lot of production systems lean on semi-static maps refreshed periodically rather than pure continuous SLAM. Sensor fusion mostly earns its keep by covering for each individual sensor's weaknesses - vision struggles with occlusion and lighting, IMUs drift, force/torque sensors are noisy at low loads - fusing them gives a more robust estimate than any one source alone, independent of raw compute.
Opinions my own, not my employer's.
Post Reply