-
Notifications
You must be signed in to change notification settings - Fork 1
/
LargePoseFaceReconstruction.html
80 lines (73 loc) · 2.87 KB
/
LargePoseFaceReconstruction.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
<!DOCTYPE html>
<html>
<head>
<title>Large Pose 3D Face Reconstruction from a Single Image via Direct Volumetric CNN Regression - Presentation</title>
<meta charset="utf-8">
<!-- Custom LTS5 style -->
<link rel="stylesheet" href="../Common/lts5-style.css" type="text/css">
</head>
<body>
<!-- Remarks scripts -->
<script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [['\\[','\\]'], ['$$','$$']],
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
processEscapes: false
},
"HTML-CSS": { scale: 120, availableFonts : ["Latin Modern"], preferredFont : "Latin Modern"}
//TeX: { equationNumbers: { autoNumber: "AMS" } }
});
MathJax.Hub.Queue(function() {
$(MathJax.Hub.getAllJax()).map(function(index, elem) {
return(elem.SourceElement());
}).parent().addClass('has-jax');
});
MathJax.Hub.Configured();
</script>
<!--webFont:"Latin Modern-Web"}-->
<script type="text/javascript"
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
var slideshow = remark.create({
// Markdown source file
sourceUrl : "LargePoseFaceReconstruction.md",
// Set the slideshow display ratio
// Default: '4:3'
// Alternatives: '16:9', ...
ratio: '4:3',
// Navigation options
navigation: {
// Enable or disable navigating using scroll
// Default: true
// Alternatives: false
scroll: false,
// Enable or disable navigation using touch
// Default: true
// Alternatives: false
touch: true,
// Enable or disable navigation using click
// Default: false
// Alternatives: true
click: false
},
// .. or by using a format function
slideNumberFormat: '- %current% -',
// Enable or disable counting of incremental slides in the slide counting
countIncrementalSlides: true,
// Code Highlighting
// See : https://github.com/gnab/remark/wiki/Configuration
highlightLanguage: "no-highlight",
// Style Alternatives: arta, ascetic, dark, default, far, github, googlecode, idea, ir_black, magula, monokai, rainbow,
// solarized-dark, solarized-light, sunburst, tomorrow, tomorrow-night-blue, tomorrow-night-bright,
// tomorrow-night, tomorrow-night-eighties, vs, zenburn
highlightStyle: "github",
// highlightLines : Highlight background of code lines prefixed with *
highlightLines: true
});
</script>
</body>
</html>