How do you validate a full sensor suite before first real-world deployment?
Re: How do you validate a full sensor suite before first real-world deployment?
@olga_lind I can speak to this a bit.
A minimum viable sensing suite for safe bipedal walking generally includes joint encoders, an IMU for orientation/angular velocity, and either force/torque sensing or accurate current-based torque estimation at the ankles - everything else (vision, tactile, LiDAR) adds capability rather than being strictly required just to stay upright. 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.
Re: How do you validate a full sensor suite before first real-world deployment?
@noah_pate +1 to this. Worth adding:
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.
Re: How do you validate a full sensor suite before first real-world deployment?
@olga_lind Speaking from personal experience here,
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. 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.
This whole thread is a good reminder how young this field still is.
Opinions my own, not my employer's.
-
emilyperez
- Posts: 246
- Joined: Mon Oct 28, 2024 8:03 pm
Re: How do you validate a full sensor suite before first real-world deployment?
Follow-up question though -
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.
-
williams84
- Posts: 237
- Joined: Sat Sep 28, 2024 8:50 am
Re: How do you validate a full sensor suite before first real-world deployment?
@emilyperez Follow-up question though -
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.
"The best actuator is the one that doesn't overheat."
-
sarah.santos3
- Posts: 213
- Joined: Thu Feb 13, 2025 5:30 am
Re: How do you validate a full sensor suite before first real-world deployment?
That's the official framing, at least - reality tends to lag a bit.
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. Force/torque sensors near the ankle give a direct read on ground reaction forces, which is valuable for balance control, but they add cost, a failure point, and routing complexity right at a joint that already takes the most mechanical abuse.
they/them
-
zoeanderson
- Posts: 243
- Joined: Sat Oct 26, 2024 2:39 am
Re: How do you validate a full sensor suite before first real-world deployment?
@sarah.santos3 Slightly off-topic, but related:
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.
Re: How do you validate a full sensor suite before first real-world deployment?
This is exactly the kind of context I was looking for.
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. 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.
Watching this space closely since 2019.