adpro commited on
Commit
000ab70
·
verified ·
1 Parent(s): b1959a5

Delete gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +0 -19
gradio_app.py DELETED
@@ -1,19 +0,0 @@
1
- import gradio as gr
2
- from PIL import Image
3
-
4
- def get_depth_map():
5
- """Trả về ảnh Depth Map mới nhất từ FastAPI"""
6
- try:
7
- return Image.open("depth_map.png") # 🟢 Lấy ảnh đã lưu từ FastAPI
8
- except FileNotFoundError:
9
- return "Chưa có ảnh Depth Map nào được xử lý!"
10
-
11
- # 🟢 Tạo UI trên Hugging Face Spaces với Gradio
12
- gr.Interface(
13
- fn=get_depth_map,
14
- inputs=[],
15
- outputs=gr.Image(type="pil"),
16
- title="🔍 Depth Map Viewer",
17
- description="Hiển thị ảnh Depth Map mới nhất từ FastAPI",
18
- live=True # 🎯 **Tự động cập nhật ảnh mới**
19
- ).launch()