Skip to content

Commit 506f600

Browse files
authored
Update index.html
Signed-off-by: Koorosh Aslansefat <[email protected]>
1 parent 21a1cee commit 506f600

File tree

1 file changed

+0
-155
lines changed

1 file changed

+0
-155
lines changed

index.html

-155
Original file line numberDiff line numberDiff line change
@@ -263,162 +263,7 @@ <h2 class="title is-3">Abstract</h2>
263263
</div>
264264
<!--/ Abstract. -->
265265

266-
<!-- Paper video. -->
267-
268-
<!-- <div class="columns is-centered has-text-centered">
269-
<div class="column is-four-fifths">
270-
<h2 class="title is-3">Video</h2>
271-
<div class="publication-video">
272-
<iframe src="https://www.youtube.com/embed/MrKrnHhk8IA?rel=0&amp;showinfo=0"
273-
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
274-
</div>
275-
</div>
276-
</div> -->
277-
<!--/ Paper video. -->
278-
</div>
279-
</section>
280-
281-
<!--
282-
283-
<section class="section">
284-
<div class="container is-max-desktop">
285-
286-
<div class="columns is-centered">
287-
288-
<!-- Visual Effects. -->
289-
<div class="column">
290-
<div class="content">
291-
<h2 class="title is-3">Visual Effects</h2>
292-
<p>
293-
Using <i>nerfies</i> you can create fun visual effects. This Dolly zoom effect
294-
would be impossible without nerfies since it would require going through a wall.
295-
</p>
296-
<video id="dollyzoom" autoplay controls muted loop playsinline height="100%">
297-
<source src="./static/videos/dollyzoom-stacked.mp4"
298-
type="video/mp4">
299-
</video>
300-
</div>
301-
</div>
302-
<!--/ Visual Effects. -->
303-
304-
<!-- Matting. -->
305-
<div class="column">
306-
<h2 class="title is-3">Matting</h2>
307-
<div class="columns is-centered">
308-
<div class="column content">
309-
<p>
310-
As a byproduct of our method, we can also solve the matting problem by ignoring
311-
samples that fall outside of a bounding box during rendering.
312-
</p>
313-
<video id="matting-video" controls playsinline height="100%">
314-
<source src="./static/videos/matting.mp4"
315-
type="video/mp4">
316-
</video>
317-
</div>
318-
319-
</div>
320-
</div>
321-
</div>
322-
323-
-->
324-
<!--/ Matting. -->
325266

326-
<!-- Animation. -->
327-
328-
<!-- <div class="columns is-centered">
329-
<div class="column is-full-width">
330-
<h2 class="title is-3">Animation</h2>
331-
332-
<!-- Interpolating. -->
333-
<h3 class="title is-4">Interpolating states</h3>
334-
<div class="content has-text-justified">
335-
<p>
336-
We can also animate the scene by interpolating the deformation latent codes of two input
337-
frames. Use the slider here to linearly interpolate between the left frame and the right
338-
frame.
339-
</p>
340-
</div>
341-
<div class="columns is-vcentered interpolation-panel">
342-
<div class="column is-3 has-text-centered">
343-
<img src="./static/images/interpolate_start.jpg"
344-
class="interpolation-image"
345-
alt="Interpolate start reference image."/>
346-
<p>Start Frame</p>
347-
</div>
348-
<div class="column interpolation-video-column">
349-
<div id="interpolation-image-wrapper">
350-
Loading...
351-
</div>
352-
<input class="slider is-fullwidth is-large is-info"
353-
id="interpolation-slider"
354-
step="1" min="0" max="100" value="0" type="range">
355-
</div>
356-
<div class="column is-3 has-text-centered">
357-
<img src="./static/images/interpolate_end.jpg"
358-
class="interpolation-image"
359-
alt="Interpolation end reference image."/>
360-
<p class="is-bold">End Frame</p>
361-
</div>
362-
</div>
363-
<br/>
364-
<!--/ Interpolating. -->
365-
366-
<!-- Re-rendering. -->
367-
<h3 class="title is-4">Re-rendering the input video</h3>
368-
<div class="content has-text-justified">
369-
<p>
370-
Using <span class="dnerf">Nerfies</span>, you can re-render a video from a novel
371-
viewpoint such as a stabilized camera by playing back the training deformations.
372-
</p>
373-
</div>
374-
<div class="content has-text-centered">
375-
<video id="replay-video"
376-
controls
377-
muted
378-
preload
379-
playsinline
380-
width="75%">
381-
<source src="./static/videos/replay.mp4"
382-
type="video/mp4">
383-
</video>
384-
</div>
385-
<!--/ Re-rendering. -->
386-
387-
</div>
388-
</div>
389-
<!--/ Animation. -->
390-
391-
392-
<!-- Concurrent Work. -->
393-
<!-- <div class="columns is-centered">
394-
<div class="column is-full-width">
395-
<h2 class="title is-3">Related Links</h2>
396-
397-
<div class="content has-text-justified">
398-
<p>
399-
There's a lot of excellent work that was introduced around the same time as ours.
400-
</p>
401-
<p>
402-
<a href="https://arxiv.org/abs/2104.09125">Progressive Encoding for Neural Optimization</a> introduces an idea similar to our windowed position encoding for coarse-to-fine optimization.
403-
</p>
404-
<p>
405-
<a href="https://www.albertpumarola.com/research/D-NeRF/index.html">D-NeRF</a> and <a href="https://gvv.mpi-inf.mpg.de/projects/nonrigid_nerf/">NR-NeRF</a>
406-
both use deformation fields to model non-rigid scenes.
407-
</p>
408-
<p>
409-
Some works model videos with a NeRF by directly modulating the density, such as <a href="https://video-nerf.github.io/">Video-NeRF</a>, <a href="https://www.cs.cornell.edu/~zl548/NSFF/">NSFF</a>, and <a href="https://neural-3d-video.github.io/">DyNeRF</a>
410-
</p>
411-
<p>
412-
There are probably many more by the time you are reading this. Check out <a href="https://dellaert.github.io/NeRF/">Frank Dellart's survey on recent NeRF papers</a>, and <a href="https://github.com/yenchenlin/awesome-NeRF">Yen-Chen Lin's curated list of NeRF papers</a>.
413-
</p>
414-
</div>
415-
</div>
416-
</div>
417-
<!--/ Concurrent Work. -->
418-
419-
</div>
420-
</section>
421-
-->
422267

423268
<section class="section" id="BibTeX">
424269
<div class="container is-max-desktop content">

0 commit comments

Comments
 (0)