kiiwee's picture
Upload 5 files
79183dd verified
raw
history blame
883 Bytes
import gradio as gr
import json
import numpy as np
from sam_utils import grounded_segmentation, create_yellow_background_with_insects
from yolo_utils import yolo_processimage
from detectron_utils import detectron_process_image
def process_image(image, include_json):
detectron_result=detectron_process_image(image)
yolo_result = yolo_processimage(image)
insectsam_result = create_yellow_background_with_insects(image)
return insectsam_result, yolo_result, detectron_result
examples = [
["demo.jpg"]
]
gr.Interface(
fn=process_image,
inputs=[gr.Image(type="pil"), gr.Checkbox(label="Include JSON", value=False)],
outputs=[gr.Image(label='InsectSAM', type="numpy"),
gr.Image(label='Yolov8', type="numpy"),
gr.Image(label='Detectron', type="numpy")],
title="RB-IBDM Model Zoo Demo 🐞",
examples=examples
).launch()