-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathteaser.html
157 lines (140 loc) · 4.06 KB
/
teaser.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
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
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
<li data-target="#demo" data-slide-to="3"></li>
<li data-target="#demo" data-slide-to="4"></li>
<li data-target="#demo" data-slide-to="5"></li>
<li data-target="#demo" data-slide-to="6"></li>
<li data-target="#demo" data-slide-to="7"></li>
<li data-target="#demo" data-slide-to="8"></li>
<li data-target="#demo" data-slide-to="9"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/tornado_mb_small.jpg">
<div class="carousel-caption">
<h3>
Motion blur with temporally structured volumes
</h3>
<p>
Example rendering of a temporally structured, structured regular volume
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/tuv_example.gif">
<div class="carousel-caption">
<h3>
Motion blur with temporally unstructured volumes (TUV)
</h3>
<p>
Changing shutter time and duration for a TUV structured regular volume. TUVs allow for irregular time data and temporal refitting per voxel for improved fidelity and memory efficiency.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/siggraph20_cloudscape.jpg">
<div class="carousel-caption">
<h3>
SIGGRAPH 2020 demo: Interactive Volumetric Path Traced Cloudscape
</h3>
<p>
Interactive rendering of a large-scale volumetric cloudscape of VDB volumes, using Intel® Open Volume Kernel Library, Intel® OSPRay, and Intel® OSPRay Studio. <a href="https://www.youtube.com/watch?v=cpRMNuyiTig">Video</a>
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/hacc_zoom.jpg">
<div class="carousel-caption">
<h3>
Particle Volume Support
</h3>
<p>
Open VKL based volumetric path tracing of a 5.9 million particle subset of the HACC DarkSky simulation. Data courtesy of Salman Habib and Katrin Heitmann at Argonne National Laboratory.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/fire_extinguisher.jpg">
<div class="carousel-caption">
<h3>
VDB Support
</h3>
<p>
Created in SideFX Houdini, rendered in OSPRay 2.0 with Open VKL and Open Image Denoise.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/cloud_standalone.jpg">
<div class="carousel-caption">
<h3>
Open VKL based volumetric path tracing of the Disney cloud
</h3>
<p>
</p>
</div>
</div>
<div class="carousel-item" data-interval="20000">
<video muted loop poster="images/deferred_loading_0001.jpg" width="1024" height="576">
<!-- Fall back to mp4 for browser compatibility, or a preview
frame if video is not supported. -->
<source src="images/deferred_loading.webm" type="video/webm">
<source src="images/deferred_loading.mp4" type="video/mp4">
<img src="images/deferred_loading_0423.jpg">
</video>
<div class="carousel-caption">
<h3>Interactive Data Exploration</h3>
<p>
Loading leaf data from the Disney Moana cloud dataset while the user manipulates the viewport. White regions indicate inner nodes, while blue regions indicate fully-loaded leaf data.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/moana_cloud_sunset.jpg">
<div class="carousel-caption">
<h3>
OSPRay 2.0 + Open VKL
</h3>
<p>
The Disney Moana island and cloud rendered with OSPRay 2.0 using the new Open VKL integration.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/coffee.jpg">
<div class="carousel-caption">
<h3>
VDB Support
</h3>
<p>
Created in SideFX Houdini, rendered in OSPRay 2.0 with Open VKL and Open Image Denoise.
</p>
</div>
</div>
<div class="carousel-item">
<img src="images/jf_smoke.jpg">
<div class="carousel-caption">
<h3>
VDB Support
</h3>
<p>
Created in SideFX Houdini, rendered using Open VKL.
</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<p>
<a class="carousel-control-prev" href="#demo" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</p>
</div>
<hr>