-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.html
123 lines (95 loc) · 3.63 KB
/
report.html
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
**Homework 5**
Student name:
Sciper number:
Microfacet BRDF (40 points)
===========================
Evaluating the Microfacet BRDF
------------------------------
Sampling the Microfacet BRDF
------------------------------
Validation
----------
Ajax (smooth):
<div class="twentytwenty-container">
<img src="ajax-smooth-ref.png" alt="Reference">
<img src="ajax-smooth.png" alt="Mine">
</div>
Ajax (rough):
<div class="twentytwenty-container">
<img src="ajax-rough-ref.png" alt="Reference">
<img src="ajax-rough.png" alt="Mine">
</div>
Path tracer with next event estimation (20 points)
==================================================
Validation
----------
Cornell box:
<div class="twentytwenty-container">
<img src="cbox_ems-ref.png" alt="Reference">
<img src="cbox_ems.png" alt="Mine">
</div>
Veach material test scene:
<div class="twentytwenty-container">
<img src="veach_ems-ref.png" alt="Reference">
<img src="veach_ems.png" alt="Mine">
</div>
Table test scene:
<div class="twentytwenty-container">
<img src="table_ems-ref.png" alt="Reference">
<img src="table_ems.png" alt="Mine">
</div>
Brute force path tracer (10 points)
===================================
Validation
----------
Cornell box:
<div class="twentytwenty-container">
<img src="cbox_mats-ref.png" alt="Reference">
<img src="cbox_mats.png" alt="Mine">
</div>
Veach material test scene:
<div class="twentytwenty-container">
<img src="veach_mats-ref.png" alt="Reference">
<img src="veach_mats.png" alt="Mine">
</div>
Table test scene:
<div class="twentytwenty-container">
<img src="table_mats-ref.png" alt="Reference">
<img src="table_mats.png" alt="Mine">
</div>
Path tracer with Multiple Importance Sampling (30 points)
=========================================================
Validation
----------
Cornell box:
<div class="twentytwenty-container">
<img src="cbox_mis-ref.png" alt="Reference">
<img src="cbox_mis.png" alt="Mine">
</div>
Veach material test scene:
<div class="twentytwenty-container">
<img src="veach_mis-ref.png" alt="Reference">
<img src="veach_mis.png" alt="Mine">
</div>
Table test scene:
<div class="twentytwenty-container">
<img src="table_mis-ref.png" alt="Reference">
<img src="table_mis.png" alt="Mine">
</div>
Feedback
========
We would appreciate any comments or criticism to improve the projects in future years--naturally, this part will not be graded. Examples of information that is useful to us includes:
* How much time did you spend on the assignment? How was it divided between designing, coding, and testing?
* What advice should we have given you before you started?
* What was hard or surprising about the assignment?
* What did you like or dislike? What else would you change?
<!--- Markdeep & image comparison library - probably no need to change anything below -->
<style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="../resources/markdeep.min.js"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="../resources/jquery.event.move.js"></script>
<script src="../resources/jquery.twentytwenty.js"></script>
<link href="../resources/offcanvas.css" rel="stylesheet">
<link href="../resources/twentytwenty.css" rel="stylesheet" type="text/css" />
<script>
$(window).load(function(){$(".twentytwenty-container").twentytwenty({default_offset_pct: 0.5});});
</script>