Skip to content

Commit 7a2298a

Browse files
committed
add readme
0 parents  commit 7a2298a

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

README.md

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# face3d: python tools for processing 3d face
2+
3+
## Introduction
4+
5+
I organize this repo just for fun & my personal research use.
6+
7+
Hope this helps and you can enjoy it. : )
8+
9+
10+
11+
## Structure
12+
13+
```python
14+
# Since triangle mesh is the most popular representation of 3D face, the main part is mesh processing.
15+
mesh/ # written in python(numpy)
16+
| io.py # read & write obj
17+
| vis.py # plot mesh
18+
| transform.py # transform mesh & estimate matrix
19+
| light.py # add light & estimate light(to do)
20+
| render.py # obj to image using rasterization render
21+
22+
# When can not use vercorization to optimize, loop in python is too slow to use. So write core parts(loop) in c++, then use cython to compile it.
23+
mesh_cython/ # written in c++(cython)
24+
| render.py # the same API as in mesh/render.py, with faster speed.
25+
| light.py # the same API as in mesh/light.py, with faster speed.
26+
| mesh_core* # c++ codes of core parts.
27+
28+
# 3DMM is one of the most popular methods to generate & reconstruct 3d face.
29+
morphabel_model/ # witten in python(numpy)
30+
| morphable_model.py # morphable model class: generate & fit
31+
| fit.py # estimate shape&expression parameters. 3dmm fitting.
32+
| load.py # load 3dmm data
33+
```
34+
35+
36+
## Examples:
37+
38+
* **3dmm**. `run examples/2_3dmm.py`
39+
40+
left: random examples generated by 3dmm
41+
42+
right: 3d face generated by fitted 3dmm&pose parameters using 68 key points
43+
44+
![](examples/results/3dmm/generated.jpg)![](examples/results/3dmm/fitted.jpg)
45+
46+
* **transform.** `python examples/3_transform.py`
47+
48+
![](examples/results/transform/obj.gif)![](examples/results/transform/camera.gif)
49+
50+
* **light**. `python examples/4_light.py`
51+
52+
![](examples/results/light/position.gif)
53+
54+
* **image map** `python examples/6_image_map.py`
55+
56+
![](examples/results/image_map/depth.jpg) ![](examples/results/image_map/pncc.jpg) ![](examples/results/image_map/uv_coords.jpg)
57+
58+
* **uv map** `python examples/7_uv_map.py`
59+
60+
![](examples/results/uv_map/uv_texture_map.jpg)![](examples/results/uv_map/uv_position_map.jpg)![](examples/results/uv_map/image.jpg)
61+
62+
63+
64+
## Getting Started
65+
66+
### Prerequisite
67+
68+
- Python 3+ (numpy, skimage, scipy)
69+
70+
- Python packages:
71+
* numpy
72+
* skimage (for reading&writing image)
73+
* scipy (for loading mat)
74+
* Cython (for compiling c++ files)
75+
76+
- BFM Data
77+
78+
see [Data/BFM/readme.md](Data/BFM/readme.md)
79+
80+
### Usage
81+
82+
1. Clone the repository
83+
84+
```bash
85+
git clone https://github.com/YadiraF/face3d
86+
cd face3d
87+
```
88+
89+
2. Compile c++ files(ignore if you use numpy version)
90+
91+
```bash
92+
cd face3d/mesh_cython
93+
python setup.py build_ext -i
94+
```
95+
96+
3. Run examples
97+

0 commit comments

Comments
 (0)