From 401ce08d5039a7f703f03e7728b4b86f0cc3285c Mon Sep 17 00:00:00 2001 From: shuaiqing Date: Mon, 12 Jul 2021 20:22:09 +0800 Subject: [PATCH] :memo: update mvpose --- Readme.md | 9 ++++++++- doc/dataset.md | 22 +++++++++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index b518044..b5e49ec 100644 --- a/Readme.md +++ b/Readme.md @@ -2,7 +2,7 @@ * @Date: 2021-01-13 20:32:12 * @Author: Qing Shuai * @LastEditors: Qing Shuai - * @LastEditTime: 2021-07-07 12:02:24 + * @LastEditTime: 2021-07-12 15:27:41 * @FilePath: /EasyMocapRelease/Readme.md --> @@ -161,6 +161,13 @@ Please consider citing these works if you find this repo is useful for your proj booktitle={CVPR}, year={2021} } + +@inproceedings{dong2021fast, + title={Fast and Robust Multi-Person 3D Pose Estimation and Tracking from Multiple Views}, + author={Dong, Junting and Fang, Qi and Jiang, Wen and Yang, Yurou and Bao, Hujun and Zhou, Xiaowei}, + booktitle={T-PAMI}, + year={2021} +} ``` ## Reference diff --git a/doc/dataset.md b/doc/dataset.md index 56a1eda..750b77d 100644 --- a/doc/dataset.md +++ b/doc/dataset.md @@ -2,7 +2,7 @@ * @Date: 2021-06-07 11:57:34 * @Author: Qing Shuai * @LastEditors: Qing Shuai - * @LastEditTime: 2021-06-07 14:45:17 + * @LastEditTime: 2021-07-12 20:21:27 * @FilePath: /EasyMocapRelease/doc/dataset.md --> # EasyMoCap - Dataset @@ -86,6 +86,21 @@ For each image, we record its 2D pose in a `json` file. For an image at `root/im The definition of the `keypoints` is `body25`. If you want to use other definitions, you should add it to `easymocap/dataset/config.py` +If you use hand and face, the annot is defined as: +```bash +{ + "personID": i, + "bbox": [l, t, r, b, conf], + "keypoints": [[x0, y0, c0], [x1, y1, c1], ..., [xn, yn, cn]], + "bbox_handl2d": [l, t, r, b, conf], + "bbox_handr2d": [l, t, r, b, conf], + "bbox_face2d": [l, t, r, b, conf], + "handl2d": [[x0, y0, c0], [x1, y1, c1], ..., [xn, yn, cn]], + "handr2d": [[x0, y0, c0], [x1, y1, c1], ..., [xn, yn, cn]], + "face2d": [[x0, y0, c0], [x1, y1, c1], ..., [xn, yn, cn]] +} +``` + ## 3D Pose ```bash @@ -100,3 +115,8 @@ The definition of the `keypoints` is `body25`. If you want to use other definiti } ] ``` + +The definition of the keypoints can be found in `easymocap/dataset/config.py`. We main use the following formats: +- body25: 25 keypoints of body +- bodyhand: 25 body + 21 left hand + 21 right hand +- bodyhandface: 25 body + 21 left hand + 21 right hand + 51 face keypoints \ No newline at end of file