Spaces:
Running
Running
Update index.html
Browse files- index.html +25 -17
index.html
CHANGED
@@ -1,19 +1,27 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8" />
|
5 |
+
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>DreamGaussian Project</title>
|
7 |
+
<link rel="stylesheet" href="style.css" />
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="card">
|
11 |
+
<h1>DreamGaussian</h1>
|
12 |
+
<p>This repository contains the official implementation for <a href="https://arxiv.org/abs/XXXX.XXXX">DreamGaussian: Generative Gaussian Splatting for Efficient 3D Content Creation</a>.</p>
|
13 |
+
<p><a href="https://dreamgaussian.github.io">Project Page</a> | <a href="https://arxiv.org/abs/XXXX.XXXX">Arxiv</a></p>
|
14 |
+
<img src="https://github.com/dreamgaussian/dreamgaussian/assets/25863658/db860801-7b9c-4b30-9eb9-87330175f5c8" alt="DreamGaussian Project Image">
|
15 |
+
|
16 |
+
<h2>Install</h2>
|
17 |
+
<pre><code>
|
18 |
+
pip install -r requirements.txt
|
19 |
+
git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization
|
20 |
+
pip install ./diff-gaussian-rasterization
|
21 |
+
pip install ./simple-knn
|
22 |
+
pip install git+https://github.com/NVlabs/nvdiffrast/
|
23 |
+
pip install git+https://github.com/ashawkey/kiuikit
|
24 |
+
</code></pre>
|
25 |
+
</div>
|
26 |
+
</body>
|
27 |
+
</html>
|