Spaces:
Running
Running
File size: 6,662 Bytes
84be540 f86853e 84be540 f86853e 84be540 f86853e 84be540 f9fda49 84be540 f86853e |
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
import gradio as gr
import torch
import cv2
import numpy as np
import supervision as sv
from ultralytics import YOLO
from PIL import Image
import requests
import io
import os
import matplotlib.pyplot as plt
import pandas as pd
from pathlib import Path
import json
# Create directories if they don't exist
os.makedirs("models", exist_ok=True)
# Download model if it doesn't exist
model_path = "models/yolov11x_best.pt"
if not os.path.exists(model_path):
url = "https://github.com/moured/YOLOv11-Document-Layout-Analysis/releases/download/doclaynet_weights/yolov11x_best.pt"
print(f"Downloading model from {url}...")
r = requests.get(url)
with open(model_path, 'wb') as f:
f.write(r.content)
print(f"Model downloaded to {model_path}")
# Load the model
model = YOLO(model_path)
print("Model loaded successfully!")
# Define classes (from DocLayNet dataset)
CLASSES = ["Caption", "Footnote", "Formula", "List-item", "Page-footer", "Page-header",
"Picture", "Section-header", "Table", "Text", "Title"]
# Define visual elements we want to extract
VISUAL_ELEMENTS = ["Picture", "Caption", "Table", "Formula"]
# Define colors for visualization - Fix for ColorPalette issue
# Use the sv.ColorPalette directly or create a custom color palette based on supervision version
try:
# Try newer versions approach
COLORS = sv.ColorPalette.default()
except (AttributeError, TypeError):
try:
# Try alternate approach for some versions
COLORS = sv.ColorPalette.from_hex(["#FF0000", "#00FF00", "#0000FF", "#FFFF00", "#FF00FF", "#00FFFF",
"#FFA500", "#800080", "#008000", "#000080", "#808080"])
except (AttributeError, TypeError):
# Fallback for older versions or different API
COLORS = sv.ColorPalette(11) # Create a color palette with 11 colors (one for each class)
# Set up the annotator
box_annotator = sv.BoxAnnotator(color=COLORS)
def predict_layout(image):
if image is None:
return None, None, None
# Convert to numpy array if it's not already
if isinstance(image, np.ndarray):
img = image
else:
img = np.array(image)
# Get image dimensions
img_height, img_width = img.shape[:2]
# Run inference
results = model(img)[0]
# Format detections
try:
# Try with newer supervision versions
detections = sv.Detections.from_ultralytics(results)
except (TypeError, AttributeError):
# Fallback for older versions
boxes = results.boxes.xyxy.cpu().numpy()
confidence = results.boxes.conf.cpu().numpy()
class_ids = results.boxes.cls.cpu().numpy().astype(int)
# Create Detections object manually
detections = sv.Detections(
xyxy=boxes,
confidence=confidence,
class_id=class_ids
)
# Get class names
class_ids = detections.class_id
labels = [f"{CLASSES[class_id]} {confidence:.2f}"
for class_id, confidence in zip(class_ids, detections.confidence)]
# Get annotated frame
annotated_image = box_annotator.annotate(
scene=img.copy(),
detections=detections,
labels=labels
)
# Extract bounding boxes for all visual elements
boxes_data = []
for i, (class_id, xyxy, confidence) in enumerate(zip(detections.class_id, detections.xyxy, detections.confidence)):
class_name = CLASSES[class_id]
# Include all visual elements (Pictures, Captions, Tables, Formulas)
if class_name in VISUAL_ELEMENTS:
x1, y1, x2, y2 = map(int, xyxy)
width = x2 - x1
height = y2 - y1
boxes_data.append({
"class": class_name,
"confidence": float(confidence),
"x1": int(x1),
"y1": int(y1),
"x2": int(x2),
"y2": int(y2),
"width": int(width),
"height": int(height)
})
# Create DataFrame for display
if boxes_data:
df = pd.DataFrame(boxes_data)
df = df[["class", "confidence", "x1", "y1", "x2", "y2", "width", "height"]]
else:
df = pd.DataFrame(columns=["class", "confidence", "x1", "y1", "x2", "y2", "width", "height"])
# Convert to JSON for download
json_data = json.dumps(boxes_data, indent=2)
return annotated_image, df, json_data
# Function to download JSON
def download_json(json_data):
if not json_data:
return None
return json_data
# Set up the Gradio interface
with gr.Blocks() as demo:
gr.Markdown("# YOLOv11x Document Layout Analysis for Visual Elements")
gr.Markdown("Upload a document image to extract visual elements including diagrams, tables, formulas, and captions.")
with gr.Row():
with gr.Column():
input_image = gr.Image(label="Input Document")
analyze_btn = gr.Button("Analyze Layout", variant="primary")
with gr.Column():
output_image = gr.Image(label="Detected Layout")
with gr.Row():
with gr.Column():
output_table = gr.DataFrame(label="Visual Elements Bounding Boxes")
json_output = gr.JSON(label="JSON Output")
download_btn = gr.Button("Download JSON")
json_file = gr.File(label="Download JSON File", interactive=False)
analyze_btn.click(
fn=predict_layout,
inputs=input_image,
outputs=[output_image, output_table, json_output]
)
download_btn.click(
fn=download_json,
inputs=[json_output],
outputs=[json_file]
)
gr.Markdown("## Detected Visual Elements")
gr.Markdown("""
This application detects and extracts coordinates for the following visual elements:
- **Pictures**: Diagrams, photos, illustrations, flowcharts, etc.
- **Tables**: Structured data presented in rows and columns
- **Formulas**: Mathematical equations and expressions
- **Captions**: Text describing pictures or tables
For each element, the system returns:
- Element type (class)
- Confidence score (0-1)
- Coordinates (x1, y1, x2, y2)
- Width and height in pixels
""")
gr.Markdown("## About")
gr.Markdown("""
This demo uses YOLOv11x for document layout analysis, with a focus on extracting visual elements.
Model from [moured/YOLOv11-Document-Layout-Analysis](https://github.com/moured/YOLOv11-Document-Layout-Analysis)
""")
if __name__ == "__main__":
demo.launch() |