Spaces:
Configuration error
Configuration error
File size: 385 Bytes
6f89cdc |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
def cargar_fotos_tab():
gr.Markdown("Suba fotos de frente y perfil derecho. Puede usar la cámara o cargar archivos.")
with gr.Row():
imagen_frente = gr.Image(type="pil", label="Foto de frente", interactive=True)
imagen_perfil = gr.Image(type="pil", label="Foto de perfil derecho", interactive=True)
return imagen_frente, imagen_perfil
|