File size: 1,998 Bytes
5422773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
869b645
5422773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b66004e
5422773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import gradio as gr
import json

from ultralyticsplus import YOLO, render_result

# Model Heading and Description
model_heading = "YOLOv8 NDL-DocL Datasets"
description = """YOLOv8 NDL-DocL Datasets Gradio demo for object detection. Upload an image or click an example image to use."""

article = "<p style='text-align: center'>YOLOv5 NDL-DocL Datasets is an object detection model trained on the <a href=\"https://github.com/ndl-lab/layout-dataset\">NDL-DocL Datasets</a>.</p>"

image_path= [
       
    ['『源氏物語』(東京大学総合図書館所蔵).jpg', 0.25, 0.45],
     ['『源氏物語』(京都大学所蔵).jpg', 0.25, 0.45],
      ['『平家物語』(国文学研究資料館提供).jpg', 0.25, 0.45]
]

# Load YOLO model
model = YOLO('nakamura196/yolov8-ndl-layout')

def yolov8_img_inference(
    image: gr.Image = None,
    conf_threshold: gr.Slider = 0.25,
    iou_threshold: gr.Slider = 0.45,
):
    """
    YOLOv8 inference function
    Args:
        image: Input image
        conf_threshold: Confidence threshold
        iou_threshold: IOU threshold
    Returns:
        Rendered image
    """
    results = model.predict(image, conf=conf_threshold, iou=iou_threshold, device="cpu")
    render = render_result(model=model, image=image, result=results[0])            

    json_data = json.loads(results[0].tojson())
    
    return render, json_data

    
inputs_image = [
    gr.Image(type="filepath", label="Input Image"),
    gr.Slider(minimum=0.0, maximum=1.0, value=0.25, step=0.05, label="Confidence Threshold"),
    gr.Slider(minimum=0.0, maximum=1.0, value=0.45, step=0.05, label="IOU Threshold"),
]

outputs_image =[
    gr.Image(type="filepath", label="Output Image"),
    gr.JSON(label="Output JSON")
]
demo = gr.Interface(
    fn=yolov8_img_inference,
    inputs=inputs_image,
    outputs=outputs_image,
    title=model_heading,
    description=description,
    examples=image_path,
    article=article,
    cache_examples=False
)

demo.launch(share=False)