cavargas10 commited on
Commit
4f4fe53
·
verified ·
1 Parent(s): 49c6f1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -6
app.py CHANGED
@@ -135,10 +135,15 @@ def split_image(image: Image.Image) -> List[Image.Image]:
135
 
136
  with gr.Blocks(delete_cache=(600, 600)) as demo:
137
  gr.Markdown("""
138
- ## Image to 3D Asset with [TRELLIS](https://trellis3d.github.io/)
139
- * Upload an image and click "Generate" to create a 3D asset. If the image has alpha channel, it will be used as the mask. Otherwise, we use `rembg` to remove the background.
140
- * If satisfied, click "Extract GLB" to download the 3D model.
141
- ✨New: Experimental multi-image support.
 
 
 
 
 
142
  """)
143
 
144
  with gr.Row(equal_height=False):
@@ -191,8 +196,7 @@ with gr.Blocks(delete_cache=(600, 600)) as demo:
191
  model_output = LitModel3D(
192
  label="3D Model Viewer",
193
  exposure=10.0,
194
- height=400,
195
- clear_color=[1.0, 1.0, 1.0, 1.0]
196
  )
197
 
198
  with gr.Row():
 
135
 
136
  with gr.Blocks(delete_cache=(600, 600)) as demo:
137
  gr.Markdown("""
138
+ # UTPL - Conversión de Imágenes a 3D con IA
139
+ ### Tesis: *"Objetos tridimensionales creados por IA: Innovación en entornos virtuales"*
140
+ **Autor:** Carlos Vargas
141
+ **Base técnica:** Adaptación de [TRELLIS](https://trellis3d.github.io/) (herramienta de código abierto para generación 3D)
142
+
143
+ ### Propósito educativo:
144
+ Implementación reestructurada para:
145
+ - Demostraciones académicas
146
+ - Investigación en modelado 3D automático
147
  """)
148
 
149
  with gr.Row(equal_height=False):
 
196
  model_output = LitModel3D(
197
  label="3D Model Viewer",
198
  exposure=10.0,
199
+ height=400
 
200
  )
201
 
202
  with gr.Row():