From 42d9698a7b61a20096dacec95cd53f339d4f9a0b Mon Sep 17 00:00:00 2001 From: LazyBusyYang Date: Fri, 23 Dec 2022 11:21:05 +0800 Subject: [PATCH] [Version] Bump version to v0.7.0 (#63) * bump version to 0.7.0 * update news * fix PR comments --- README.md | 7 ++++++- xrmocap/version.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8592ccb..caadbce8 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,11 @@ A detailed introduction can be found in [introduction.md](./docs/en/tutorials/in XRMoCap decomposes the framework into several components, based on which optimization-based and learning-based methods are integrated into one framework. Users can easily prototype a customized multi-view mocap pipeline by choosing different components in configs. ## News - +- 2022-12-21: XRMoCap [v0.7.0](https://github.com/openxrlab/xrmocap/releases/tag/v0.7.0) is released. Major updates include: + - Add [mview_mperson_end2end_estimator](https://github.com/openxrlab/xrmocap/blob/main/xrmocap/core/estimation/mview_mperson_end2end_estimator.py) for learning-based method + - Add SMPLX support and allow smpl_data initiation in `mview_sperson_smpl_estimator` + - Add multiple optimizers, detailed joint weights and priors, grad clipping for better SMPLify results + - Add [mediapipe_estimator](https://github.com/openxrlab/xrmocap/blob/main/xrmocap/human_perception/keypoints_estimation/mediapipe_estimator.py) for human keypoints2d perception - 2022-10-14: XRMoCap [v0.6.0](https://github.com/openxrlab/xrmocap/releases/tag/v0.6.0) is released. Major updates include: - Add [4D Association Graph](http://www.liuyebin.com/4dassociation/), the first Python implementation to reproduce this algorithm - Add Multi-view multi-person top-down smpl estimation @@ -72,6 +76,7 @@ Supported methods: - [x] [Shape-aware 3D Pose Optimization](https://ait.ethz.ch/projects/2021/multi-human-pose/) (ICCV'2019) - [x] [MvP](https://arxiv.org/pdf/2111.04076.pdf) (NeurIPS'2021) - [x] [HuMMan MoCap](https://caizhongang.github.io/projects/HuMMan/) (ECCV'2022) +- [x] [4D Association Graph](http://www.liuyebin.com/4dassociation/) (CVPR'2020) diff --git a/xrmocap/version.py b/xrmocap/version.py index 9eb9d138..1f019754 100644 --- a/xrmocap/version.py +++ b/xrmocap/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenXRLab. All rights reserved. -__version__ = '0.6.0' +__version__ = '0.7.0' def parse_version_info(version_str):