xinwei89
change gradio
242850e
raw
history blame
1.22 kB
import gradio as gr
from backend import visualize_image
# gradio inputs
image_input = gr.components.Image(type="pil", label="Input Image")
color_mode_select = gr.components.Radio(["Black/white", "Random", "Segmentation"], label="Color Mode")
mode_dropdown = gr.components.Dropdown(["Trees", "Buildings", "Both"], label="Detection Mode")
tree_threshold_slider = gr.components.Slider(minimum=0, maximum=1, step=0.1, default=0.7, label='Set confidence threshold "%" for trees')
building_threshold_slider = gr.components.Slider(minimum=0, maximum=1, step=0.1, default=0.7, label='Set confidence threshold "%" for buildings')
# gradio outputs
output_image = gr.components.Image(type="pil", label="Output Image")
title = "Aerial Image Segmentation"
description = "An instance segmentation demo for identifying boundaries of buildings and trees in aerial images using DETR (End-to-End Object Detection) model with MaskRCNN-101 backbone"
# gradio interface
interface = gr.Interface(
fn=visualize_image,
inputs=[image_input, mode_dropdown, tree_threshold_slider, building_threshold_slider, color_mode_select],
outputs=output_image,
title=title,
description=description
)
interface.launch(debug=True)