ZGTZ-2026 commited on
Commit
0fa6f93
·
verified ·
1 Parent(s): e9d8562

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -22
README.md CHANGED
@@ -67,29 +67,29 @@ Large-Scale 1080P Multi-View Human Motion Data for AI Research & Commercial Appl
67
  📂 Dataset Structure
68
  </h2>
69
  <p style="font-size:18px; color:#555; line-height:1.8; margin-bottom:15px; margin-top:0;">
70
- 数据集采用标准化的文件夹结构,便于快速加载和处理。每个动作序列包含多视角视频、同步时间戳及元数据。
71
  </p>
72
  <pre style="background:#f8f9fa; padding:18px; border-radius:10px; font-size:16px; color:#333; overflow-x:auto; border-left:4px solid #D72222; font-family: 'Courier New', monospace; line-height:1.6; margin:0 0 15px 0;">
73
  ├── Dataset_Root/
74
- │ ├── Videos/ # 原始视频数据
75
- │ │ ├── Duration/ # 时长
76
- │ │ ├── Scene_01/ # 一个完整采集单元
77
  │ │ │ ├── Cam_01.mp4
78
  │ │ │ └── ... (6 views)
79
- │ ├── Content/ # 场景内容描述
80
- │ │ ├── Environment/ # 环境
81
- │ │ ├── Scene_Type/ # 场景
82
- │ │ ├── People_Count/ # 人数
83
- │ │ ├── Action_Category/ # 动作
84
- │ ├── VGGT/ # 3D点云图
85
- │ ├── Annotations/ # SMPL 参数
86
  │ │ ├── Scene_01.json
87
  │ │ │ ├── "frames": [
88
  │ │ │ │ ├──{
89
  │ │ │ │ │ ├── "frame_id": 0,
90
  │ │ │ │ │ ├── "smpl_params": {
91
  │ │ │ │ │ │ ├── "global_orient": [rx, ry, rz],
92
- │ │ │ │ │ │ ├── "body_pose": [[j1_rx, j1_ry, j1_rz],...], # 23个关节
93
  │ │ │ │ │ │ ├── "transl": [tx, ty, tz],
94
  │ │ │ │ │ ├── }
95
  │ │ │ │ ├──}
@@ -97,8 +97,8 @@ Large-Scale 1080P Multi-View Human Motion Data for AI Research & Commercial Appl
97
  </pre>
98
  <div style="background:#e3f2fd; padding:15px; border-radius:10px; margin-top:0; border-left:4px solid #2196F3;">
99
  <p style="margin:0; color:#1976D2; font-size:16px;">
100
- <strong>💡 提示:</strong>
101
- 这种结构遵循了计算机视觉领域的通用规范,可直接配合 PyTorch TensorFlow Dataset 类进行加载。
102
  </p>
103
  </div>
104
  </div>
@@ -109,14 +109,14 @@ Large-Scale 1080P Multi-View Human Motion Data for AI Research & Commercial Appl
109
  📊 Dataset Overview
110
  </h2>
111
  <ul style="font-size:18px; color:#555; line-height:1.8; list-style-type:none; padding-left:0; margin:0 0 18px 0;">
112
- <li style="margin-bottom:6px;">✅ <strong>多人动作:</strong> 800+ 小时</li>
113
- <li style="margin-bottom:6px;">✅ <strong>双人动作:</strong> 2,200+ 小时</li>
114
- <li style="margin-bottom:6px;">✅ <strong>单人动作:</strong> 7,000+ 小时</li>
115
- <li style="margin-bottom:6px;">✅ <strong>真实场景数量:</strong> 2,000+</li>
116
- <li style="margin-bottom:6px;">✅ <strong>参与拍摄人次:</strong> 6,000+</li>
117
- <li style="margin-bottom:6px;">✅ <strong>实拍总时长:</strong> 10,000+ 小时</li>
118
- <li style="margin-bottom:6px;">✅ <strong>视频质量:</strong> 全量 1080P 高清视频,单条最长视频超过 60 分钟</li>
119
- <li style="margin-bottom:6px;">✅ <strong>采集方式:</strong> 多视角同步采集,时序稳定对齐</li>
120
  </ul>
121
  <hr style="border:none; border-top:1px solid #eee; margin:0 0 12px 0;">
122
  <p style="font-size:18px; color:#555; margin:0; text-align:center;">
 
67
  📂 Dataset Structure
68
  </h2>
69
  <p style="font-size:18px; color:#555; line-height:1.8; margin-bottom:15px; margin-top:0;">
70
+ We provide modularly selectable annotation data covering human body parameters ranging from video-level to frame-level.
71
  </p>
72
  <pre style="background:#f8f9fa; padding:18px; border-radius:10px; font-size:16px; color:#333; overflow-x:auto; border-left:4px solid #D72222; font-family: 'Courier New', monospace; line-height:1.6; margin:0 0 15px 0;">
73
  ├── Dataset_Root/
74
+ │ ├── Videos/ # raw video data
75
+ │ │ ├── Duration/ # duration
76
+ │ │ ├── Scene_01/ # a complete acquisition unit
77
  │ │ │ ├── Cam_01.mp4
78
  │ │ │ └── ... (6 views)
79
+ │ ├── Content/ # scene content description
80
+ │ │ ├── Environment/ # environment
81
+ │ │ ├── Scene_Type/ # scene
82
+ │ │ ├── People_Count/ # number of people
83
+ │ │ ├── Action_Category/ # action
84
+ │ ├── VGGT/ # 3D Point Cloud
85
+ │ ├── Annotations/ # SMPL Parameters
86
  │ │ ├── Scene_01.json
87
  │ │ │ ├── "frames": [
88
  │ │ │ │ ├──{
89
  │ │ │ │ │ ├── "frame_id": 0,
90
  │ │ │ │ │ ├── "smpl_params": {
91
  │ │ │ │ │ │ ├── "global_orient": [rx, ry, rz],
92
+ │ │ │ │ │ │ ├── "body_pose": [[j1_rx, j1_ry, j1_rz],...], # 23 joints in total
93
  │ │ │ │ │ │ ├── "transl": [tx, ty, tz],
94
  │ │ │ │ │ ├── }
95
  │ │ │ │ ├──}
 
97
  </pre>
98
  <div style="background:#e3f2fd; padding:15px; border-radius:10px; margin-top:0; border-left:4px solid #2196F3;">
99
  <p style="margin:0; color:#1976D2; font-size:16px;">
100
+ <strong>💡 Tip:</strong>
101
+ Required fields can be freely chosen based on actual needs: multi-camera raw video data, environment, scene type, number of people, action category, duration, point cloud data (.vgt), frame-level human body parameters (SMPL).
102
  </p>
103
  </div>
104
  </div>
 
109
  📊 Dataset Overview
110
  </h2>
111
  <ul style="font-size:18px; color:#555; line-height:1.8; list-style-type:none; padding-left:0; margin:0 0 18px 0;">
112
+ <li style="margin-bottom:6px;">✅ <strong>multi-person actions:</strong> 800+ 小时</li>
113
+ <li style="margin-bottom:6px;">✅ <strong>two-person actions:</strong> 2,200+ 小时</li>
114
+ <li style="margin-bottom:6px;">✅ <strong>single-person actions:</strong> 7,000+ 小时</li>
115
+ <li style="margin-bottom:6px;">✅ <strong>number of real-world scenes:</strong> 2,000+</li>
116
+ <li style="margin-bottom:6px;">✅ <strong>Shooting participant person-times:</strong> 6,000+</li>
117
+ <li style="margin-bottom:6px;">✅ <strong>total actual shooting duration:</strong> 10,000+ 小时</li>
118
+ <li style="margin-bottom:6px;">✅ <strong>video quality:</strong> Full set of 1080P HD videos, with the longest single video exceeding 60 minutes.</li>
119
+ <li style="margin-bottom:6px;">✅ <strong>acquisition method:</strong> Multi-view synchronous acquisition, with stable time-series alignment.</li>
120
  </ul>
121
  <hr style="border:none; border-top:1px solid #eee; margin:0 0 12px 0;">
122
  <p style="font-size:18px; color:#555; margin:0; text-align:center;">