updated instructions
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import sys
|
2 |
-
import os
|
3 |
from subprocess import check_call
|
4 |
import tempfile
|
5 |
|
@@ -276,6 +275,10 @@ with tempfile.TemporaryDirectory() as tmpdir:
|
|
276 |
2. Move the camera to your desired view in "Unprojected 3DGS" 3D viewer
|
277 |
3. Hit "Generate a novel view" button and check the result
|
278 |
|
|
|
|
|
|
|
|
|
279 |
"""
|
280 |
)
|
281 |
file = gr.File(label='Reference Input', file_types=['image'])
|
|
|
1 |
import sys
|
|
|
2 |
from subprocess import check_call
|
3 |
import tempfile
|
4 |
|
|
|
275 |
2. Move the camera to your desired view in "Unprojected 3DGS" 3D viewer
|
276 |
3. Hit "Generate a novel view" button and check the result
|
277 |
|
278 |
+
## Tips
|
279 |
+
- Extremely large camera movement from the input view might cause low performance results due to the unexpected deviation from the training distribution, which is not the scope this model. Instead, you can feed the generation result for the small camera movement repeatedly and progressively move towards the desired view.
|
280 |
+
- 3D viewer might take some time to update especially when trying different images back to back. Wait until it fully updates to the new image.
|
281 |
+
|
282 |
"""
|
283 |
)
|
284 |
file = gr.File(label='Reference Input', file_types=['image'])
|