Commit ·
a4f65fc
1
Parent(s): 1ed5102
update readme
Browse files
README.md
CHANGED
|
@@ -1,3 +1,67 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- Tactile Sensing
|
| 5 |
+
- Vibro-Acoustic Sensing
|
| 6 |
+
- Contact Localization
|
| 7 |
+
- Deep Learning
|
| 8 |
+
pretty_name: Vibrosense Dataset
|
| 9 |
+
size_categories:
|
| 10 |
+
- n>1T
|
| 11 |
+
---
|
| 12 |
+
# Vibro-Sense: Robust Vibration-based Impulse Response Localization and Trajectory Tracking for Robotic Hands
|
| 13 |
+
### Paper page can be found [here](https://wzaielamri.github.io/publication/vibrosense).
|
| 14 |
+
### Github Repository can be found [here](https://github.com/wzaielamri/vibrosense).
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
# Vibrosense.
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
This repository provides the full dataset for the Vibro-Sense project, enabling robust, affordable, and scalable contact perception for robotic hands using vibro-acoustic sensing. Our approach leverages seven low-cost piezoelectric microphones and an Audio Spectrogram Transformer to decode vibrational signatures generated during physical interaction. The system achieves high-accuracy whole-body touch localization, robust trajectory tracking, and material-aware perception, and is resilient to robot motion.
|
| 22 |
+
|
| 23 |
+
**Note:** The dataset is generated and stored using the [webdataset](https://github.com/webdataset/webdataset) format for efficient large-scale data handling and streaming.
|
| 24 |
+
|
| 25 |
+
## Dataset Structure
|
| 26 |
+
|
| 27 |
+
The dataset is organized into several main directories:
|
| 28 |
+
|
| 29 |
+
- `localisation/`: Contains data for touch localization and material detection tasks, including filtered and processed signals for different materials (soft-plastic (cap), metal, plastic, wood).
|
| 30 |
+
- `quickdraw/`: Contains data for trajectory following task, with both fixed and moving hand conditions, and for different materials.
|
| 31 |
+
- `quickdraw_testset/`: Test set for trajectory following, organized similarly to `quickdraw/`.
|
| 32 |
+
- `objects/`: Contains object classification data collected with three microphones.
|
| 33 |
+
|
| 34 |
+
## Tasks
|
| 35 |
+
|
| 36 |
+
This dataset supports four main tasks:
|
| 37 |
+
|
| 38 |
+
1. **Touch Localization**
|
| 39 |
+
- Predict the contact location on the robotic hand using vibrational signals.
|
| 40 |
+
- Data: `localisation/filtered/` and `localisation/processed_*` directories.
|
| 41 |
+
|
| 42 |
+
2. **Trajectory Following (Quickdraw)**
|
| 43 |
+
- Track and reconstruct the trajectory of contact points during dynamic interactions.
|
| 44 |
+
- Data: `quickdraw/` and `quickdraw_testset/` directories.
|
| 45 |
+
|
| 46 |
+
3. **Object Classification**
|
| 47 |
+
- Classify the object being touched based on the vibrational response.
|
| 48 |
+
- Data: `objects/dataset/`.
|
| 49 |
+
|
| 50 |
+
4. **Material Detection (using Localisation Dataset)**
|
| 51 |
+
- Identify the material of the contact surface (e.g., metal, plastic, wood, soft-plastic (cap)) using the localisation dataset.
|
| 52 |
+
- Data: `localisation/filtered/` and `localisation/processed_*` directories.
|
| 53 |
+
|
| 54 |
+
## Getting Started
|
| 55 |
+
|
| 56 |
+
All datasets are provided in processed form, ready for training and evaluation. Please refer to the [paper](https://wzaielamri.github.io/publication/vibrosense) and [code repository](https://github.com/wzaielamri/vibrosense) for details on model training and evaluation.
|
| 57 |
+
|
| 58 |
+
## Citation
|
| 59 |
+
|
| 60 |
+
```bibtex
|
| 61 |
+
@InProceedings{ZaiElAmri2026VibroSense,
|
| 62 |
+
author = {Zai El Amri, Wadhah and {Navarro-Guerrero}, Nicol{\'a}s},
|
| 63 |
+
title = {"Vibro-Sense: Robust Vibration-based Impulse Response Localization and Trajectory Tracking for Robotic Hands"},
|
| 64 |
+
booktitle = {"ArXiv Preprint arXiv:2601.20555, Submitted to Autonomous Robots Springer Journal"},
|
| 65 |
+
year={2026},
|
| 66 |
+
}
|
| 67 |
+
```
|