-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (77 loc) · 2.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<head>
<title>MAGICK Dataset</title>
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: 'Century Gothic', 'Open Sans', sans-serif;
color: white;
text-align: center;
background-color: #21D4FD;
background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
background-attachment: fixed;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: .5rem;
}
h2 {
font-size: 1.5rem;
margin-bottom: 2rem;
}
p {
font-size: 1rem;
margin-bottom: 2rem;
}
a {
text-decoration: none;
color: white;
}
.link-button {
display: inline-block;
background-color: #444;
color: white;
padding: 10px 20px;
margin: 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
.link-button:hover {
background-color: #666;
}
</style>
</head>
<body>
<h1>MAGICK: A Large-scale Captioned Dataset<br>
Matting Generated Images using Chroma Keying</h1>
<h3>Authors: <a href="mailto:[email protected]">Ryan D Burgert</a>, Brian L. Price, Jason Kuen, Yijun Li,
Michael S Ryoo</h3>
<!-- Links to the dataset and arXiv page (TBD) -->
<a href="https://drive.google.com/file/d/1Eec6MQZOy00Qwgy1gvWHVSCfnuUqOwKz/view?usp=sharing" class="link-button">📖
Paper (With Appendix)</a>
<a href="CVPR_Final_No_Appendix.pdf" class="link-button">📖 Paper (No Appendix)</a>
<a href="https://huggingface.co/datasets/OneOverZero/MAGICK" class="link-button">🤗 Download Dataset</a>
<!-- <a href="https://vision.cs.stonybrook.edu/ryan_adobe/magick_dataset_explorer_jun21_2024.html" class="link-button">🌐 -->
<a href="https://ryanndagreat.github.io/MAGICK/Explorer/magick_rgba_explorer.html" class="link-button">🌐
Explore MAGICK</a>
<br>
<!-- <img src="poster.pdf"> -->
MAGICK is released under the following license: <a href="https://creativecommons.org/licenses/by-nc/4.0/">https://creativecommons.org/licenses/by-nc/4.0/</a>
<br />
<img src="poster.png" style="width:90%">
</body>
</html>