Skip to content

Commit 546d8a0

Browse files
committed
change scale size 200 to 180
1 parent 0d365c0 commit 546d8a0

6 files changed

+8
-8
lines changed

examples/1_pipeline.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
colors = colors/np.max(colors)
2020

2121
# ------------------------------ 2. modify vertices(transformation. change position of obj)
22-
# scale. target size=200 for example
23-
s = 200/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
22+
# scale. target size=180 for example
23+
s = 180/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
2424
# rotate 30 degree for example
2525
R = mesh.transform.angle2matrix([0, 30, 0])
2626
# no translation. center of obj:[0,0]

examples/2_3dmm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
colors = np.minimum(np.maximum(colors, 0), 1)
3030

3131
# --- 3. transform vertices to proper position
32-
s = 1e-03
32+
s = 8e-04
3333
angles = [10, 30, 20]
3434
t = [0, 0, 0]
3535
transformed_vertices = bfm.transform(vertices, s, angles, t)

examples/4_light.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ def light_test(vertices, light_positions, light_intensities, h = 256, w = 256):
3030
colors = colors/np.max(colors)
3131
# move center to [0,0,0]
3232
vertices = vertices - np.mean(vertices, 0)[np.newaxis, :]
33-
s = 200/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
33+
s = 180/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
3434
R = mesh.transform.angle2matrix([0, 0, 0])
3535
t = [0, 0, 0]
3636
vertices = mesh.transform.similarity_transform(vertices, s, R, t)
3737

38-
38+
# save settings
3939
save_folder = 'results/light'
4040
if not os.path.exists(save_folder):
4141
os.mkdir(save_folder)

examples/5_render.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
colors = colors/np.max(colors)
2222
# move center to [0,0,0]
2323
vertices = vertices - np.mean(vertices, 0)[np.newaxis, :]
24-
s = 200/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
24+
s = 180/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
2525
R = mesh.transform.angle2matrix([0, 0, 0])
2626
t = [0, 0, 0]
2727
vertices = mesh.transform.similarity_transform(vertices, s, R, t)

examples/6_generate_image_map.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# ------------------------------ modify vertices(transformation. change position of obj)
2323
# scale. target size=200 for example
24-
s = 200/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
24+
s = 180/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
2525
# rotate 30 degree for example
2626
R = mesh.transform.angle2matrix([0, 30, 0])
2727
# no translation. center of obj:[0,0]

examples/7_generate_uv_map.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def process_uv(uv_coords, uv_h = 256, uv_w = 256):
2929
vertices = C['vertices']; colors = C['colors']; triangles = C['full_triangles'];
3030
colors = colors/np.max(colors)
3131
# --modify vertices(transformation. change position of obj)
32-
s = 200/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
32+
s = 180/(np.max(vertices[:,1]) - np.min(vertices[:,1]))
3333
R = mesh.transform.angle2matrix([0, 30, 0])
3434
t = [0, 0, 0]
3535
transformed_vertices = mesh.transform.similarity_transform(vertices, s, R, t)

0 commit comments

Comments
 (0)