Spaces:
No application file
No application file
Update interior design.py
Browse files- interior design.py +30 -10
interior design.py
CHANGED
@@ -1,14 +1,34 @@
|
|
1 |
import gradio as gr
|
2 |
-
import os
|
3 |
|
4 |
-
def
|
5 |
-
return
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
inputs = [gr.Image(type="pil"), gr.Image(type="pil"),"text","text",gr.Slider(0,1)],
|
10 |
-
outputs="image"
|
11 |
-
)
|
12 |
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
+
def image_diffsuion():
|
4 |
+
return None
|
5 |
|
6 |
+
def gligen_grounded_inpainting():
|
7 |
+
return None
|
|
|
|
|
|
|
8 |
|
9 |
+
def Yolov8_SAM():
|
10 |
+
return None
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
def TripoRS_Stable_Zero123_Wonder3D():
|
17 |
+
return None
|
18 |
+
|
19 |
+
def convert_3d_to_2d():
|
20 |
+
return None
|
21 |
+
|
22 |
+
def image_fusion():
|
23 |
+
return None
|
24 |
+
|
25 |
+
with gr.Block() as demo:
|
26 |
+
with gr.Row():
|
27 |
+
gr.Image()
|
28 |
+
gr.Image()
|
29 |
+
gr.Image()
|
30 |
+
with gr.Row():
|
31 |
+
gr.Radio(["Vintage","Contmporary","Cottage","Bohemian","Minimalist"])
|
32 |
+
|
33 |
+
|
34 |
+
demo.launch()
|