Spaces:
Sleeping
Sleeping
File size: 469 Bytes
251f8f7 739e183 251f8f7 1b68d22 251f8f7 739e183 1b68d22 739e183 1d53959 739e183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
from geo_painting import GeoPainting
geo_painting = GeoPainting()
def generate_image(input_promp, control_image):
return geo_painting.generate_painting(input_promp, control_image)
input_promp = gr.Textbox(label="Input promp")
control_image = gr.Image(label="Select a control image")
output_image = gr.Image(label="Generated geospatial image")
iface = gr.Interface(generate_image, [input_promp, control_image], output_image)
iface.launch()
|