ZGTZ-2026 commited on
Commit
a793e6a
·
verified ·
1 Parent(s): 6a74dd8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -3
README.md CHANGED
@@ -308,7 +308,7 @@ your_dataset_name/
308
 
309
 
310
 
311
- div style="background-color: #D72222; padding: 0 20px;">
312
 
313
  <div style="background:#D72222; padding:80px 20px; margin:-40px -20px; text-align:center; color:white;">
314
 
@@ -344,6 +344,87 @@ Large-Scale 1080P Multi-View Human Motion Data for AI Research & Commercial Appl
344
 
345
  <br><br>
346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
 
348
- <!-- 数据集规模与结构 -->
349
- <div style="padding:25px 20px; text-align:center; background:#ffffff; border-radius:12px; margin:15px 0 20px 0; border:1px solid #e0e0e0; box-sizing: bord
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
 
309
 
310
 
311
+ <div style="background-color: #D72222; padding: 0 20px;">
312
 
313
  <div style="background:#D72222; padding:80px 20px; margin:-40px -20px; text-align:center; color:white;">
314
 
 
344
 
345
  <br><br>
346
 
347
+ <!-- 数据集规模与结构 -->
348
+ <div style="padding:25px 20px; text-align:center; background:#ffffff; border-radius:12px; margin:15px 0 20px 0; border:1px solid #e0e0e0; box-sizing: border-box;">
349
+ <h2 style="font-size:44px; margin-bottom:20px; color:#333; display:inline-block; margin-top:0;">
350
+ Dataset Scale & Structure
351
+ <div style="height:3px; width:100px; background:#D72222; margin:10px auto 0 auto; border-radius:2px; display:block;"></div>
352
+ </h2>
353
+ <table align="center" style="margin:auto; border-collapse:separate; border-spacing:15px 10px; width:80%; max-width:900px;">
354
+ <tr>
355
+ <td style="text-align:center; background:white; padding:18px 12px; border-radius:10px; box-shadow:0 2px 5px rgba(0,0,0,0.05);">
356
+ <h3 style="font-size:32px; color:#D72222; margin:0; font-weight:bold;">800+</h3>
357
+ <p style="font-size:16px; color:#555; margin:8px 0 0 0;">Multi-Person Interactions (Hours)</p>
358
+ </td>
359
+ <td style="text-align:center; background:white; padding:18px 12px; border-radius:10px; box-shadow:0 2px 5px rgba(0,0,0,0.05);">
360
+ <h3 style="font-size:32px; color:#D72222; margin:0; font-weight:bold;">2,200+</h3>
361
+ <p style="font-size:16px; color:#555; margin:8px 0 0 0;">Dual-Person Actions (Hours)</p>
362
+ </td>
363
+ <td style="text-align:center; background:white; padding:18px 12px; border-radius:10px; box-shadow:0 2px 5px rgba(0,0,0,0.05);">
364
+ <h3 style="font-size:32px; color:#D72222; margin:0; font-weight:bold;">7,000+</h3>
365
+ <p style="font-size:16px; color:#555; margin:8px 0 0 0;">Single-Person Actions (Hours)</p>
366
+ </td>
367
+ </tr>
368
+ </table>
369
+ </div>
370
 
371
+ <!-- 数据结构说明 -->
372
+ <div style="padding:30px 20px; text-align:left; background:#ffffff; border-radius:16px; margin:0 0 20px 0; border:1px solid #e0e0e0; box-shadow:0 4px 20px rgba(0,0,0,0.03); box-sizing: border-box;">
373
+ <h2 style="font-size:36px; margin-bottom:15px; color:#333; border-bottom:2px solid #D72222; padding-bottom:8px; display:inline-block; margin-top:0;">
374
+ 📂 Dataset Structure
375
+ </h2>
376
+ <p style="font-size:18px; color:#555; line-height:1.8; margin-bottom:15px; margin-top:0;">
377
+ 数据集采用标准化的文件夹结构,便于快速加载和处理。每个动作序列包含多视角视频、同步时间戳及元数据。
378
+ </p>
379
+ <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;">
380
+ your_dataset_name/
381
+ ├── sequences/ # 动作序列根目录
382
+ │ ├── seq_0001/ # 单个动作序列文件夹
383
+ │ │ ├── views/ # 多视角视频存储
384
+ │ │ │ ├── cam_00.mp4 # 视角0视频
385
+ │ │ │ ├── cam_01.mp4 # 视角1视频
386
+ │ │ │ └── ... # 更多视角
387
+ │ │ ├── metadata.json # 序列元数据(动作类型、时长、参与者ID)
388
+ │ │ └── timestamps.txt # 各视角同步时间戳
389
+ │ ├── seq_0002/
390
+ │ └── ...
391
+ ├── annotations/ # 标注文件目录(可选)
392
+ │ ├── keypoints_3d.json # 3D关键点标注
393
+ │ └── action_labels.csv # 动作类别标签
394
+ └── splits/ # 数据集划分文件
395
+ ├── train.txt # 训练集序列ID列表
396
+ ├── val.txt # 验证集序列ID列表
397
+ └── test.txt # 测试集序列ID列表
398
+ </pre>
399
+ <div style="background:#e3f2fd; padding:15px; border-radius:10px; margin-top:0; border-left:4px solid #2196F3;">
400
+ <p style="margin:0; color:#1976D2; font-size:16px;">
401
+ <strong>💡 提示:</strong>
402
+ 这种结构遵循了计算机视觉领域的通用规范,可直接配合 PyTorch 或 TensorFlow 的 Dataset 类进行加载。
403
+ </p>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- 最后一个模块:适配Markdown渲染 -->
408
+ <div style="padding:30px 20px; text-align:left; background:#ffffff; border-radius:16px; border:1px solid #e0e0e0; box-shadow:0 4px 20px rgba(0,0,0,0.03); margin:0; box-sizing: border-box;">
409
+ <h2 style="font-size:36px; margin-bottom:18px; color:#333; border-bottom:2px solid #D72222; padding-bottom:8px; display:inline-block; margin-top:0;">
410
+ 📊 Dataset Overview
411
+ </h2>
412
+ <ul style="font-size:18px; color:#555; line-height:1.8; list-style-type:none; padding-left:0; margin:0 0 18px 0;">
413
+ <li style="margin-bottom:6px;">✅ <strong>多人动作:</strong> 800+ 小时</li>
414
+ <li style="margin-bottom:6px;">✅ <strong>双人动作:</strong> 2,200+ 小时</li>
415
+ <li style="margin-bottom:6px;">✅ <strong>单人动作:</strong> 7,000+ 小时</li>
416
+ <li style="margin-bottom:6px;">✅ <strong>真实场景数量:</strong> 2,000+</li>
417
+ <li style="margin-bottom:6px;">✅ <strong>参与拍摄人次:</strong> 6,000+</li>
418
+ <li style="margin-bottom:6px;">✅ <strong>实拍总时长:</strong> 10,000+ 小时</li>
419
+ <li style="margin-bottom:6px;">✅ <strong>视频质量:</strong> 全量 1080P 高清视频,单条最长视频超过 60 分钟</li>
420
+ <li style="margin-bottom:6px;">✅ <strong>采集方式:</strong> 多视角同步采集,时序稳定对齐</li>
421
+ </ul>
422
+ <hr style="border:none; border-top:1px solid #eee; margin:0 0 12px 0;">
423
+ <p style="font-size:18px; color:#555; margin:0; text-align:center;">
424
+ <a href="http://220.168.41.41:8090/multi-viewData/index"
425
+ style="color:#D72222; text-decoration:none; font-weight:bold; border:2px solid #D72222; padding:12px 30px; border-radius:8px; display:inline-block; transition:background 0.3s;">
426
+ Visit Official Website:中广天择2026年高清连续多视角4D视频数据集
427
+ </a>
428
+ </p>
429
+ </div>
430
+ </div>