-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_model.py
208 lines (177 loc) · 6.28 KB
/
test_model.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
from collections import defaultdict
import numpy as np
import typing
from line import line
from tga import CoordinateImage
import triangle
from model import Model, Model1
from vector import Vector2, Vector3
def test_model_wire_mesh():
m = Model("obj/african_head.obj")
width = height = 800
image = CoordinateImage(width, height)
white = (255, 255, 255)
for face in m.faces():
for n_edge in range(3):
v0 = m.vert(face[n_edge])
v1 = m.vert(face[(n_edge + 1) % 3])
x0 = int((v0[0] + 1) * width / 2)
y0 = int((v0[1] + 1) * height / 2)
x1 = int((v1[0] + 1) * width / 2)
y1 = int((v1[1] + 1) * height / 2)
line(x0, y0, x1, y1, image, white)
image.save("african_head_wire")
def test_model_triangle():
m = Model("obj/african_head.obj")
width = height = 800
image = CoordinateImage(width, height)
white = (255, 255, 255)
light = Vector3(0, 0, -1, float)
for face in m.faces():
screen_coords: typing.List[Vector2] = []
world_coords: typing.List[Vector3] = []
for n_edge in range(3):
v0 = Vector3(*m.vert(face[n_edge]), float)
screen_coords.append(
Vector2((v0.x + 1) * width / 2, (v0.y + 1) * height / 2)
)
world_coords.append(v0)
n = (world_coords[2] - world_coords[0]) ^ (world_coords[1] - world_coords[0])
n.normalize()
intensity = light * n
if intensity > 0:
triangle.triangle(
screen_coords[0],
screen_coords[1],
screen_coords[2],
image,
(int(255 * intensity), int(255 * intensity), int(255 * intensity)),
)
image.save("african_head_triangle")
def test_model_triangle_with_zbuffer():
m = Model("obj/african_head.obj")
width = height = 800
image = CoordinateImage(width, height)
white = (255, 255, 255)
light = Vector3(0, 0, -1, float)
z_buffer = defaultdict(lambda: -100)
for face in m.faces():
screen_coords: typing.List[Vector3] = []
world_coords: typing.List[Vector3] = []
for n_edge in range(3):
v0 = Vector3(*m.vert(face[n_edge]), float)
screen_coords.append(
Vector3(
(v0.x + 1) * width / 2 + 0.5,
(v0.y + 1) * height / 2 + 0.5,
v0.z,
float,
)
)
world_coords.append(v0)
n = (world_coords[2] - world_coords[0]) ^ (world_coords[1] - world_coords[0])
n.normalize()
intensity = light * n
if intensity > 0:
triangle.triange_with_zbuffer(
screen_coords[0],
screen_coords[1],
screen_coords[2],
width,
height,
z_buffer,
image,
(int(255 * intensity), int(255 * intensity), int(255 * intensity)),
)
image.save("african_head_triangle_with_zbuffer")
def test_model_triangle_with_texture():
m = Model1("obj/african_head.obj")
texture = CoordinateImage()
texture.load("obj/african_head_diffuse.tga")
width = height = 800
image = CoordinateImage(width, height)
light = Vector3(0, 0, -1, float)
z_buffer = defaultdict(lambda: -100)
for face in m.faces():
screen_coords: typing.List[Vector3] = []
world_coords: typing.List[Vector3] = []
texture_coords: typing.List[Vector3] = [] # texture coords
for idx in range(3):
v0 = m.vert(face.vert_idx[idx])
screen_coords.append(
Vector3(
(v0.x + 1) * width / 2 + 0.5,
(v0.y + 1) * height / 2 + 0.5,
v0.z,
float,
)
)
world_coords.append(v0)
texture_coords.append(m.texture(face.texture_idx[idx]))
n = (world_coords[2] - world_coords[0]) ^ (world_coords[1] - world_coords[0])
n.normalize()
intensity = light * n
if intensity > 0:
triangle.triange_with_texture(
screen_coords,
texture_coords,
width,
height,
z_buffer,
image,
texture,
intensity,
)
image.save("african_head_triangle_with_texture")
def test_model_triangle_with_perspective():
m = Model1("obj/african_head.obj")
texture = CoordinateImage()
texture.load("obj/african_head_diffuse.tga")
width = height = 800
depth = 255
image = CoordinateImage(width, height)
light = Vector3(0, 0, -1, float)
camera = Vector3(0, 0, 3, float)
z_buffer = defaultdict(lambda: -1000)
projection = np.identity(4)
projection[3][2] = -1 / camera.z
viewport = np.identity(4)
viewport[0][3] = 400.0
viewport[1][3] = 400.0
viewport[2][3] = depth / 2.0
viewport[0][0] = width / 2.0
viewport[1][1] = height / 2.0
viewport[2][2] = depth / 2.0
transfer_matrix = viewport.dot(projection)
for face in m.faces():
screen_coords: typing.List[Vector3] = []
world_coords: typing.List[Vector3] = []
texture_coords: typing.List[Vector3] = [] # texture coords
for idx in range(3):
v0 = m.vert(face.vert_idx[idx])
v0_t = transfer_matrix.dot(np.array([[v0.x], [v0.y], [v0.z], [1.0]]))
screen_coords.append(
Vector3(
v0_t[0][0] / v0_t[3][0],
v0_t[1][0] / v0_t[3][0],
v0_t[2][0] / v0_t[3][0],
float,
)
)
world_coords.append(v0)
texture_coords.append(m.texture(face.texture_idx[idx]))
n = (world_coords[2] - world_coords[0]) ^ (world_coords[1] - world_coords[0])
n.normalize()
intensity = light * n
if intensity > 0:
triangle.triange_with_texture(
screen_coords,
texture_coords,
width,
height,
z_buffer,
image,
texture,
intensity,
)
image.save("african_head_triangle_with_perspective")