diff --git a/README.md b/README.md index a45e03ec9f..0f4baa2335 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,8 @@ https://user-images.githubusercontent.com/15977946/124654387-0fd3c500-ded1-11eb- ## What's New +- Release [RTMW3D](/projects/rtmpose3d), a real-time model for 3D wholebody pose estimation. + - Release [RTMO](/projects/rtmo), a state-of-the-art real-time method for multi-person pose estimation. ![rtmo](https://github.com/open-mmlab/mmpose/assets/26127467/54d5555a-23e5-4308-89d1-f0c82a6734c2) @@ -106,10 +108,9 @@ https://user-images.githubusercontent.com/15977946/124654387-0fd3c500-ded1-11eb- - Support inference of [PoseAnything](/projects/pose_anything). Web demo is available [here](https://openxlab.org.cn/apps/detail/orhir/Pose-Anything). -- Support for two new datasets: +- Support for new datasets: - - (CVPR 2023) [ExLPose](https://mmpose.readthedocs.io/en/latest/dataset_zoo/2d_body_keypoint.html#exlpose-dataset) - - (ICCV 2023) [H3WB](/docs/en/dataset_zoo/3d_wholebody_keypoint.md) + - (ICCV 2015) [300VW](/docs/en/dataset_zoo/2d_face_keypoint.md) - Welcome to use the [*MMPose project*](/projects/README.md). Here, you can discover the latest features and algorithms in MMPose and quickly share your ideas and code implementations with the community. Adding new features to MMPose has become smoother: @@ -119,6 +120,7 @@ https://user-images.githubusercontent.com/15977946/124654387-0fd3c500-ded1-11eb- - Newly added projects include: - [RTMPose](/projects/rtmpose/) - [RTMO](/projects/rtmo/) + - [RTMPose3D](/projects/rtmpose3d/) - [PoseAnything](/projects/pose_anything/) - [YOLOX-Pose](/projects/yolox_pose/) - [MMPose4AIGC](/projects/mmpose4aigc/) diff --git a/README_CN.md b/README_CN.md index 3acb01abca..578f8d47f8 100644 --- a/README_CN.md +++ b/README_CN.md @@ -96,6 +96,8 @@ https://user-images.githubusercontent.com/15977946/124654387-0fd3c500-ded1-11eb- ## 最新进展 +- 发布了 [RTMW3D](/projects/rtmpose3d/), 一个 3D 全身姿态估计的实时模型。 + - 发布了单阶段实时多人姿态估计模型 [RTMO](/projects/rtmo)。相比 RTMPose 在多人场景下性能更优 ![rtmo](https://github.com/open-mmlab/mmpose/assets/26127467/54d5555a-23e5-4308-89d1-f0c82a6734c2) @@ -104,10 +106,9 @@ https://user-images.githubusercontent.com/15977946/124654387-0fd3c500-ded1-11eb- - 支持了 [PoseAnything](/projects/pose_anything) 的推理。[在线试玩](https://openxlab.org.cn/apps/detail/orhir/Pose-Anything) -- 我们支持了两个新的数据集: +- 我们支持了新的数据集: - - (CVPR 2023) [ExLPose](https://mmpose.readthedocs.io/en/latest/dataset_zoo/2d_body_keypoint.html#exlpose-dataset) - - (ICCV 2023) [H3WB](/docs/en/dataset_zoo/3d_wholebody_keypoint.md) + - (ICCV 2015) [300VW](/docs/en/dataset_zoo/2d_face_keypoint.md) - 欢迎使用 [*MMPose 项目*](/projects/README.md)。在这里,您可以发现 MMPose 中的最新功能和算法,并且可以通过最快的方式与社区分享自己的创意和代码实现。向 MMPose 中添加新功能从此变得简单丝滑: diff --git a/docker/serve/Dockerfile b/docker/serve/Dockerfile index 091599b51a..367b02f0ff 100644 --- a/docker/serve/Dockerfile +++ b/docker/serve/Dockerfile @@ -4,7 +4,7 @@ ARG CUDNN="7" FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel ARG MMCV="2.0.0rc4" -ARG MMPOSE="1.0.0rc1" +ARG MMPOSE="1.3.2" ENV PYTHONUNBUFFERED TRUE diff --git a/docs/en/faq.md b/docs/en/faq.md index 94f6f6d4a5..335beb421b 100644 --- a/docs/en/faq.md +++ b/docs/en/faq.md @@ -19,6 +19,7 @@ Detailed compatible MMPose and MMCV versions are shown as below. Please choose t | MMPose version | MMCV/MMEngine version | | :------------: | :-----------------------------: | +| 1.3.2 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.3.1 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.3.0 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.2.0 | mmcv>=2.0.1, mmengine>=0.8.0 | diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index 27f46047e2..1747095b80 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -1,5 +1,42 @@ # Changelog +## **v1.3.2 (12/07/2024)** + +**New Features** + +- Add center alignments for draw_texts in OpencvBackendVisualizer ([#2958](https://github.com/open-mmlab/mmpose/pull/2958)) +- Add wflw2coco script ([#2961](https://github.com/open-mmlab/mmpose/pull/2961)) +- Support 300VW Dataset ([#3005](https://github.com/open-mmlab/mmpose/pull/3005)) +- Add RTMW3D for 3D wholebody pose estimation task ([#3037](https://github.com/open-mmlab/mmpose/pull/3037)) + +**Improvements** + +- In browse dataset : CombinedDataset element are now browse in turn, and image saved into their dataset name folder ([#2985](https://github.com/open-mmlab/mmpose/pull/2985)) + +**Bug Fixes** + +- Fix loss computation in MSPNHead ([#2993](https://github.com/open-mmlab/mmpose/pull/2993)) +- Fix bug in inferencer ([#2966](https://github.com/open-mmlab/mmpose/pull/2966)) +- Make category_id in CocoWholeBodyDataset as numpy.array ([#2963](https://github.com/open-mmlab/mmpose/pull/2963)) + +**Documentation** + +- Add rtmlib examples ([#2923](https://github.com/open-mmlab/mmpose/pull/2923)) +- Fix readthedocs configuration ([#2979](https://github.com/open-mmlab/mmpose/pull/2979)) +- Add more detailed comments ([#2982](https://github.com/open-mmlab/mmpose/pull/2982)) +- Improve documentation folder structure of ExLPose ([#2977](https://github.com/open-mmlab/mmpose/pull/2977)) + +**New Contributors** + +- @AntDum made their first contribution in https://github.com/open-mmlab/mmpose/pull/2958 +- @Yanyirong made their first contribution in https://github.com/open-mmlab/mmpose/pull/2961 +- @drazicmartin made their first contribution in https://github.com/open-mmlab/mmpose/pull/2977 +- @KeqiangSun made their first contribution in https://github.com/open-mmlab/mmpose/pull/3005 +- @jitrc made their first contribution in https://github.com/open-mmlab/mmpose/pull/3004 +- @zgjja made their first contribution in https://github.com/open-mmlab/mmpose/pull/2963 +- @jibranbinsaleem made their first contribution in https://github.com/open-mmlab/mmpose/pull/3027 +- @cpunion made their first contribution in https://github.com/open-mmlab/mmpose/pull/3026 + ## **v1.3.1 (11/01/2024)** Fix the bug when downloading config and checkpoint using `mim` (see [Issue #2918](https://github.com/open-mmlab/mmpose/issues/2918)). diff --git a/docs/zh_cn/faq.md b/docs/zh_cn/faq.md index 2a62ecf6cb..61b7ffcea3 100644 --- a/docs/zh_cn/faq.md +++ b/docs/zh_cn/faq.md @@ -19,6 +19,7 @@ Detailed compatible MMPose and MMCV versions are shown as below. Please choose t | MMPose version | MMCV/MMEngine version | | :------------: | :-----------------------------: | +| 1.3.2 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.3.1 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.3.0 | mmcv>=2.0.1, mmengine>=0.9.0 | | 1.2.0 | mmcv>=2.0.1, mmengine>=0.8.0 | diff --git a/mmpose/version.py b/mmpose/version.py index 39bc36f2bb..924fcf22ea 100644 --- a/mmpose/version.py +++ b/mmpose/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '1.3.1' +__version__ = '1.3.2' short_version = __version__ diff --git a/tests/data/h3wb/h3wb_train_bbox_subset.npz b/tests/data/h3wb/h3wb_train_bbox_subset.npz new file mode 100644 index 0000000000..d25e3005fc Binary files /dev/null and b/tests/data/h3wb/h3wb_train_bbox_subset.npz differ