wangjiongw / FreeMan_API

Official Repository for FreeMan dataset

Home Page:https://wangjiongw.github.io/freeman/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FreeMan: Towards Benchmarking 3D Human Pose Estimation in the Wild

This is the Official Repository for FreeMan dataset, including example loading codes for FreeMan dataset.

🌏 Project Page β€’ πŸ™‹β€β™‚οΈ Request β€’ πŸ“„ Paper β€’ ▢️ YouTube β€’ πŸ–₯️ Code

News

[2024-02-24] FreeMan is accepted by CVPR2024! See you all in Seattle this summer.

[2023-09-07] Project page updated! Details & download methods are presented.

[2023-06-15] Hi! We are almost there! Data are uploading to cloud server. Please sign this Form for latest updates.

Dataset Structure

After downloading datasets, files are expected to be uncompressed as following. You can also adjust for your convenience.

    FreeMan
        β”œβ”€β”€ 30FPS
        β”‚   β”œβ”€β”€ bbox2d
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN.npy
        β”‚   β”‚   └── ...
        β”‚   β”œβ”€β”€ keypoints2d
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN.npy
        β”‚   β”‚   └── ...
        β”‚   β”œβ”€β”€ keypoints3d
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN.npy
        β”‚   β”‚   └── ...
        β”‚   β”œβ”€β”€ motions
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN_view0.npy
        β”‚   β”‚   β”œβ”€β”€ ...
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN_view8.npy
        β”‚   β”‚   └── ...
        β”‚   β”œβ”€β”€ cameras
        β”‚   β”‚   β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN.json
        β”‚   β”‚   └── ...
        β”‚   └── videos
        β”‚        β”œβ”€β”€ yyyymmdd_xxxxxxxx_subjNN
        β”‚        β”‚   β”œβ”€β”€ cameras.json
        β”‚        β”‚   β”œβ”€β”€ chessboard.pkl
        β”‚        β”‚   └── vframes
        β”‚        β”‚       β”œβ”€β”€ c01.mp4
        β”‚        β”‚       β”œβ”€β”€ ...
        β”‚        β”‚       └── c08.mp4
        β”‚        β”œβ”€β”€ ...
        β”œβ”€β”€ 60FPS
        β”‚   β”œβ”€β”€ ...

Usage

from freeman_loader import FreeMan
# Initialize dataset
freeman = FreeMan(base_dir="YOUR PATH", fps="30 or 60")

# Load video frame
video_frames = FreeMan.load_frames(freeman.get_video_path("SESSION_ID", "CAM ID"))

# Load keypoints
kpts2d = FreeMan.load_keypoints2d(freeman.keypoints2d_dir, "SESSION_ID")
kpts3d = FreeMan.load_keypoints3d(freeman.keypoints3d_dir, "SESSION_ID")

Citation

If you find FreeMan helpful and used in your project, please cite our paper.

@article{wang2023freeman,
  title={FreeMan: Towards Benchmarking 3D Human Pose Estimation in the Wild},
  author={Wang, Jiong and Yang, Fengyu and Gou, Wenbo and Li, Bingliang and Yan, Danqi and Zeng, Ailing and Gao, Yijun and Wang, Junle and Zhang, Ruimao},
  journal={arXiv preprint arXiv:2309.05073},
  year={2023}
}

License & Ackowledgement

This project and FreeMan dataset uses lisence of CC BY NC SA 4.0.

Great appreciation to all volunteers participated in FreeMan.

Thanks to great work of AIST++.

About

Official Repository for FreeMan dataset

https://wangjiongw.github.io/freeman/

License:MIT License


Languages

Language:Python 100.0%