Skip to content

Commit 3072c0b

Browse files
authored
Bump version to v0.6.0 (#43)
- Bump version to v0.6.0 - Add logo in README
1 parent e0c55d6 commit 3072c0b

File tree

4 files changed

+63
-2
lines changed

4 files changed

+63
-2
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# XRMocap
1+
<br/>
2+
3+
<div align="center">
4+
<img src="resources/xrmocap-logo.png" width="600"/>
5+
</div>
6+
7+
<br/>
28

39
<div align="left">
410

@@ -37,6 +43,18 @@ A detailed introduction can be found in [introduction.md](./docs/en/tutorials/in
3743

3844
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.
3945

46+
## News
47+
48+
- 2022-10-14: XRMoCap [v0.6.0](https://github.com/openxrlab/xrmocap/releases/tag/v0.6.0) is released. Major updates include:
49+
- Add [4D Association Graph](http://www.liuyebin.com/4dassociation/), the first Python implementation to reproduce this algorithm
50+
- Add Multi-view multi-person top-down smpl estimation
51+
- Add reprojection error point selector
52+
- 2022-09-01: XRMoCap [v0.5.0](https://github.com/openxrlab/xrmocap/releases/tag/v0.5.0) is released. Major updates include:
53+
- Support [HuMMan Mocap](https://caizhongang.github.io/projects/HuMMan/) toolchain for multi-view single person SMPL estimation
54+
- Reproduce [MvP](https://arxiv.org/pdf/2111.04076.pdf), a deep-learning-based SOTA for multi-view multi-human 3D pose estimation
55+
- Reproduce [MVPose (single frame)](https://arxiv.org/abs/1901.04111) and [MVPose (temporal tracking and filtering)](https://ieeexplore.ieee.org/document/9492024), two optimization-based methods for multi-view multi-human 3D pose estimation
56+
- Support SMPLify, SMPLifyX, SMPLifyD and SMPLifyXD
57+
4058

4159
## Benchmark
4260

docs/en/changelog.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# Changelog
22

3+
### v0.6.0 (14/10/2022/)
4+
5+
**Highlights**
6+
7+
- Add [4D Association Graph](http://www.liuyebin.com/4dassociation/), the first Python implementation to reproduce this algorithm
8+
- Add Multi-view multi-person top-down smpl estimation
9+
- Add reprojection error point selector
10+
11+
**New Features**
12+
13+
- Add [4D Association Graph](http://www.liuyebin.com/4dassociation/), the first Python implementation to reproduce this algorithm
14+
- Add Multi-view multi-person top-down smpl estimation
15+
- Add structures for mview mperson kps3d/smpl estimator
16+
- Add reprojection error point selector
17+
18+
**Refactors**
19+
20+
- Refactor Deformable and ProjAttn for MvP
21+
22+
**Documentation**
23+
24+
- Add readthedocs
25+
- Add shape-aware 3d pose optim doc
26+
- Update docs and tutorials for MvP training and evaluation
27+
- Update docs and benchmark for MVPose and MVPose tracking
28+
- Update docs for single person in getting started
29+
- Add LICENSE note
30+
- Add S-Lab license
31+
- Fix outdata URL, and advices for docs
32+
33+
**CICD**
34+
35+
- Add some github actions for issue management
36+
- Fix github workflow build job won't fail when pytest fails
37+
- Remove secrets in build CI
38+
39+
**Bug Fixes**
40+
41+
- Fix SMPL(X/XD)Data
42+
- Fix mistakes for mview sperson
43+
- Fix bugs in MvP training
44+
45+
346
### v0.5.0 (01/09/2022/)
447

548
**Highlights**

resources/xrmocap-logo.png

204 KB
Loading

xrmocap/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenXRLab. All rights reserved.
22

3-
__version__ = '0.5.0'
3+
__version__ = '0.6.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)