thanhhff commited on
Commit
25f92eb
·
verified ·
1 Parent(s): 4d60f01

MultiSensor-Home-2

Browse files
Home2-Layout.png ADDED

Git LFS Details

  • SHA256: 57ebf4d120e74b494d0ec07cbc83faec767b81d4ae806e58f067b0f4a05f90c4
  • Pointer size: 132 Bytes
  • Size of remote file: 5.31 MB
MultiSensor-Home2.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50743b6605c10eb95c0c5863bb4c933fe0fd0c41f7993b723e7c6e33d1a1ceb6
3
+ size 4195280912
README.md CHANGED
@@ -1,3 +1,151 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ A simple way to download the dataset:
6
+ ```
7
+ # Make sure hf CLI is installed: pip install -U "huggingface_hub[cli]"
8
+ hf download thanhhff/MultiSensor-Home2 --repo-type=dataset --local-dir dataset
9
+ ```
10
+
11
+ # MultiSensor-Home2: Benchmark for Multi-modal Multi-view Action Recognition in Home Environments
12
+
13
+ MultiSensor-Home2 is an extended version of MultiSensor-Home1, captured in a different home layout while maintaining the same structure and recording settings.
14
+ This dataset is designed for multi-view action recognition and transformer-based sensor fusion research.
15
+
16
+
17
+ ## 📊 Dataset Overview
18
+
19
+ MultiSensor-Home is a comprehensive multi-view action recognition dataset captured in a real home environment.
20
+ The dataset features:
21
+
22
+ - **Multi-view Setup**: 5 synchronized camera views (View1-View5)
23
+ - **High-resolution**: Original resolution 4000×3000 pixels (available upon request)
24
+ - **Optimized for Deep Learning**: Resized to 320×240 pixels for efficient training
25
+ - **Temporal Annotations**: Precise start/end timestamps for each action
26
+ - **Real-world Scenarios**: Natural human activities in home environment
27
+ - **Action Classes**: 16 different action classes in this environment
28
+
29
+ **Note**: The original high-resolution dataset (4000×3000 pixels) is available upon request. Please contact: nguyent [at] cs.is.i.nagoya-u.ac.jp
30
+
31
+ ## 🏠 Room Layout and Camera Setup
32
+
33
+ ![Home1 Layout](Home2-Layout.png)
34
+
35
+ *Home1 floor plan showing camera positions and room layout*
36
+
37
+ - **Room Layout**: Complete floor plan of the home environment
38
+ - **Camera Positions**: Exact placement of all 5 cameras (View1-View5)
39
+ - **Camera Orientations**: Direction and field of view for each camera
40
+ - **Room Dimensions**: Spatial measurements and room configurations
41
+ - **Recording Environment**: Overview of the home setup used for data collection
42
+
43
+ This layout file is essential for understanding the spatial relationships between different camera views and the overall recording environment.
44
+
45
+
46
+ ## 🏠 Dataset Structure
47
+
48
+ ```
49
+ MultiSensor-Home2/
50
+ ├── 01/ # Recording session 1
51
+ ├── 02/ # Recording session 2
52
+ ├── 03/ # Recording session 3
53
+ ├── 04/ # Recording session 4
54
+ ├── 05/ # Recording session 5
55
+ ├── 06/ # Recording session 6
56
+ ├── 07/ # Recording session 7
57
+ ├── 08/ # Recording session 8
58
+ ├── 09/ # Recording session 9
59
+ ├── all_labels.json # Complete annotations
60
+ ├── train_data.json # Training split annotations
61
+ ├── test_data.json # Test split annotations
62
+ └── README.md # This file
63
+ ```
64
+
65
+ ## 📹 Video File Naming Convention
66
+
67
+ Videos follow the pattern: `{id}-{View}{number}-Part{part}.mp4`
68
+
69
+ **Examples:**
70
+ - `00-View1-Part1.mp4` - ID 00, View 1, Part 1
71
+ - `15-View3-Part2.mp4` - ID 15, View 3, Part 2
72
+ - `23-View5-Part1.mp4` - ID 23, View 5, Part 1
73
+
74
+ ## 🏷️ Action Classes
75
+
76
+ The dataset contains **16 action classes** covering various human activities in the home environment:
77
+
78
+ - **Basic Movements**: Sitdown, Standup, Enter, Exit
79
+ - **Device Usage**: UseLaptop, UsePhone, ReadBook
80
+ - **Environmental Control**: TurnOnLamp, TurnOffLamp
81
+ - **Home Activities**: OpenCurtain, CloseCurtain, Eat, Drink
82
+ - **And more...**
83
+
84
+ ## 📋 Annotation Format
85
+
86
+ Each video segment is annotated with:
87
+
88
+ ```json
89
+ {
90
+ "video_url_1": "01/00-View1-Part1.mp4",
91
+ "video_url_2": "01/00-View2-Part1.mp4",
92
+ "video_url_3": "01/00-View3-Part1.mp4",
93
+ "video_url_4": "01/00-View4-Part1.mp4",
94
+ "video_url_5": "01/00-View5-Part1.mp4",
95
+ "tricks": [
96
+ {
97
+ "start": 0.6758380883417825,
98
+ "end": 6.314058810132165,
99
+ "channel": 0,
100
+ "labels": [
101
+ "Enter"
102
+ ]
103
+ }
104
+ }
105
+ ```
106
+
107
+ ### Annotation Fields:
108
+ - **video_url_1-5**: Paths to the 5 synchronized video views
109
+ - **start/end**: Temporal boundaries in seconds
110
+ - **labels**: Action label for the time segment
111
+
112
+
113
+ ## 📧 Original High-Resolution Dataset
114
+
115
+ The original dataset at full resolution (4000×3000 pixels) is available upon request.
116
+
117
+ Please include:
118
+ - Your name and affiliation
119
+ - Intended use of the dataset
120
+ - Brief description of your research
121
+
122
+ ## 📄 License and Citation
123
+
124
+ When using this dataset, please cite our paper:
125
+
126
+ ```bibtex
127
+ @inproceedings{nguyen2025multisensor,
128
+ author = {Trung Thanh Nguyen and Yasutomo Kawanishi and Vijay John and Takahiro Komamizu and Ichiro Ide},
129
+ title = {MultiSensor-Home: A Wide-area Multi-modal Multi-view Dataset for Action Recognition and Transformer-based Sensor Fusion},
130
+ booktitle = {Proceedings of the 19th IEEE International Conference on Automatic Face and Gesture Recognition},
131
+ year = {2025},
132
+ note = {Best Student Paper Award}
133
+ }
134
+ ```
135
+
136
+ ## 🤝 Contributing
137
+
138
+ We welcome contributions and feedback. If you find any issues or have suggestions for improvements, please contact us.
139
+
140
+ ## 📞 Contact
141
+
142
+ For questions about the dataset, paper, or to request the original high-resolution version:
143
+
144
+ **Email**: nguyent [at] cs.is.i.nagoya-u.ac.jp
145
+
146
+ ## Acknowledgement
147
+ This work was partly supported by Japan Society for the Promotion of Science (JSPS) KAKENHI JP21H03519 and JP24H00733.
148
+
149
+ ---
150
+
151
+ *This dataset is designed to advance research in multi-view action recognition, sensor fusion, and transformer-based approaches for understanding human activities in real-world environments.*
all_labels.json ADDED
The diff for this file is too large to render. See raw diff
 
test_data.json ADDED
The diff for this file is too large to render. See raw diff
 
train_data.json ADDED
The diff for this file is too large to render. See raw diff