extract_flame_params
🗿
Extract FLAME parameters from 3D face models.
FLAME model
Check out the interactive FLAME model viewer online:
Functions:
Name | Description |
---|---|
get_flame_params |
Get FLAME parameters (e.g., shape) from the list of head models. |
load_deca_params |
Load estimated FLAME parameters of the DECA model. |
load_flame_params |
Load FLAME parameters of the original FLAME implementation. |
get_flame_params
🗿
get_flame_params(
list_of_head_nrs: list[str | int],
param: str,
model: str = "deca",
) -> DataFrame
Get FLAME parameters (e.g., shape) from the list of head models.
Source code in code/facesim3d/modeling/FLAME/extract_flame_params.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
load_deca_params
🗿
Load estimated FLAME parameters of the DECA model.
Source code in code/facesim3d/modeling/FLAME/extract_flame_params.py
44 45 46 47 48 49 |
|
load_flame_params
🗿
Load FLAME parameters of the original FLAME implementation.
Source code in code/facesim3d/modeling/FLAME/extract_flame_params.py
52 53 54 55 |
|