Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -185,6 +185,8 @@ _HEADER_ = '''
|
|
185 |
|
186 |
Try V2 here: https://huggingface.co/spaces/Yiwen-ntu/MeshAnythingV2
|
187 |
|
|
|
|
|
188 |
**MeshAnything** converts any 3D representation into meshes created by human artists, i.e., Artist-Created Meshes (AMs).
|
189 |
|
190 |
Code: <a href='https://github.com/buaacyw/MeshAnything' target='_blank'>GitHub</a>. Arxiv Paper: <a href='https://arxiv.org/abs/2406.10163' target='_blank'>ArXiv</a>.
|
@@ -211,12 +213,12 @@ If you have any questions, feel free to open a discussion or contact us at <b>yi
|
|
211 |
"""
|
212 |
output_model_obj = gr.Model3D(
|
213 |
label="Generated Mesh (OBJ Format)",
|
214 |
-
|
215 |
clear_color=[1, 1, 1, 1],
|
216 |
)
|
217 |
preprocess_model_obj = gr.Model3D(
|
218 |
label="Processed Input Mesh (OBJ Format)",
|
219 |
-
|
220 |
clear_color=[1, 1, 1, 1],
|
221 |
)
|
222 |
input_image_render = gr.Image(
|
@@ -232,7 +234,7 @@ with (gr.Blocks() as demo):
|
|
232 |
with gr.Row():
|
233 |
input_3d = gr.Model3D(
|
234 |
label="Input Mesh",
|
235 |
-
|
236 |
clear_color=[1,1,1,1],
|
237 |
)
|
238 |
|
|
|
185 |
|
186 |
Try V2 here: https://huggingface.co/spaces/Yiwen-ntu/MeshAnythingV2
|
187 |
|
188 |
+
For image or text to Artist-Created Mesh. We suggest first using <a href='https://hyperhuman.deemos.com/rodin' target='_blank'>Rodin</a> to achieve text/image to dense mesh and then input the dense mesh to us.
|
189 |
+
|
190 |
**MeshAnything** converts any 3D representation into meshes created by human artists, i.e., Artist-Created Meshes (AMs).
|
191 |
|
192 |
Code: <a href='https://github.com/buaacyw/MeshAnything' target='_blank'>GitHub</a>. Arxiv Paper: <a href='https://arxiv.org/abs/2406.10163' target='_blank'>ArXiv</a>.
|
|
|
213 |
"""
|
214 |
output_model_obj = gr.Model3D(
|
215 |
label="Generated Mesh (OBJ Format)",
|
216 |
+
display_mode="wireframe",
|
217 |
clear_color=[1, 1, 1, 1],
|
218 |
)
|
219 |
preprocess_model_obj = gr.Model3D(
|
220 |
label="Processed Input Mesh (OBJ Format)",
|
221 |
+
display_mode="wireframe",
|
222 |
clear_color=[1, 1, 1, 1],
|
223 |
)
|
224 |
input_image_render = gr.Image(
|
|
|
234 |
with gr.Row():
|
235 |
input_3d = gr.Model3D(
|
236 |
label="Input Mesh",
|
237 |
+
display_mode="wireframe",
|
238 |
clear_color=[1,1,1,1],
|
239 |
)
|
240 |
|