File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # IO-DATA Example
2+
3+ ## Fetch data
4+
5+ Download data from [ here] ( https://drive.google.com/drive/folders/1xQjkYJfL77e9iPhirie8gfJFGo7pjtbT?usp=sharing )
6+
7+ ` *-full.tar.gz ` contains full data.
8+ ` *-no-depth.tar.gz ` contains the data for the no-depth version of the dataset, which take up less storage.
9+
10+ Extarct data:
11+
12+ ```
13+ tar -xvf DATA_NAME.tar.gz
14+ ```
15+
16+ ## Environment
17+
18+ - Ubuntu >=20.04
19+
20+ ## Denpendancy
21+
22+ - python3
23+ - pip3
24+ - opencv-python
25+ - pybullet (for mocap visualization)
26+
27+ ## Install packages
28+
29+ ``` bash
30+ sudo apt-get install python3-pip
31+ pip3 install opencv-python
32+ ```
33+
34+ ## Usage
35+
36+ run the following command
37+ ``` bash
38+ python3 load_and_visualize.py YOUR_DATA_PATH
39+ # e.g. python3 load_and_visualize.py ~/IO-DATA-EXAMPLE/20240505_kitchen/
40+ ```
41+
42+ If you want to visualize the mocap data,
43+
44+ 1 . you need install pybullet
45+ ``` bash
46+ pip3 install pybullet
47+ ```
48+ 2 . run the following command
49+ ``` bash
50+ python3 load_and_visualize.py YOUR_DATA_PATH --visualize_mocap
51+ ```
52+
53+ `
54+
55+ ## Output
You can’t perform that action at this time.
0 commit comments