Spaces:
Runtime error
Runtime error
File size: 1,312 Bytes
858167a 487ee6d 858167a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
## Technical tricks to improve or accelerate ECON
### If the reconstructed geometry is not satisfying, play with the adjustable parameters in _config/econ.yaml_
- `use_smpl: ["hand"]`
- [ ]: don't use either hands or face parts from SMPL-X
- ["hand"]: only use the **visible** hands from SMPL-X
- ["hand", "face"]: use both **visible** hands and face from SMPL-X
- `thickness: 2cm`
- could be increased accordingly in case final reconstruction **xx_full.obj** looks flat
- `k: 4`
- could be reduced accordingly in case the surface of **xx_full.obj** has discontinous artifacts
- `hps_type: PIXIE`
- "pixie": more accurate for face and hands
- "pymafx": more robust for challenging poses
- `texture_src: image`
- "image": direct mapping the aligned pixels to final mesh
- "SD": use Stable Diffusion to generate full texture (TODO)
### To accelerate the inference, you could
- `use_ifnet: False`
- True: use IF-Nets+ for mesh completion ( $\text{ECON}_\text{IF}$ - Better quality, **~2min / img**)
- False: use SMPL-X for mesh completion ( $\text{ECON}_\text{EX}$ - Faster speed, **~1.8min / img**)
```bash
# For single-person image-based reconstruction (w/o all visualization steps, 1.5min)
python -m apps.infer -cfg ./configs/econ.yaml -in_dir ./examples -out_dir ./results -novis
```
|