Image-to-3D / app.py
frogleo's picture
优化界面和交互
f882a9b verified
raw
history blame
200 Bytes
import gradio as gr
title = "## Image to 3D"
description = "A lightweight image to 3D converter"
with gr.Blocks().queue() as demo:
gr.Markdown(title)
gr.Markdown(description)
demo.launch()