Spaces:
Running
Running
File size: 16,354 Bytes
e43d25c | 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | #!/usr/bin/env python3
"""
FastAPI server for OmniParser with detailed endpoints including coordinates.
Run with: uvicorn server:app --host 0.0.0.0 --port 8000
"""
from fastapi import FastAPI, File, UploadFile, Form, HTTPException
from fastapi.responses import JSONResponse
import torch
from PIL import Image
import io
import base64
from typing import List, Dict, Any, Optional
import numpy as np
from util.utils import check_ocr_box, get_yolo_model, get_caption_model_processor, get_som_labeled_img
from huggingface_hub import snapshot_download
# Monkey patch for gradio_client JSON schema bug
try:
from gradio_client import utils as gradio_client_utils
original_json_schema_to_python_type = gradio_client_utils.json_schema_to_python_type
def patched_json_schema_to_python_type(schema):
try:
if not isinstance(schema, dict):
return "Any"
return original_json_schema_to_python_type(schema)
except (TypeError, AttributeError) as e:
if "argument of type 'bool' is not iterable" in str(e):
return "Any"
raise
gradio_client_utils.json_schema_to_python_type = patched_json_schema_to_python_type
except Exception as e:
print(f"Warning: Could not apply gradio_client patch: {e}")
# Initialize FastAPI app
app = FastAPI(
title="OmniParser API",
description="Screen parsing tool to convert GUI screens to structured elements with coordinates",
version="2.0.0"
)
# Global models
_yolo_model = None
_caption_model_processor = None
# Proper device handling
DEVICE = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
print(f"Using device: {DEVICE}")
def load_models():
"""Load models once and cache them"""
global _yolo_model, _caption_model_processor
if _yolo_model is None or _caption_model_processor is None:
repo_id = "microsoft/OmniParser-v2.0"
local_dir = "weights"
print(f"Downloading repository to: {local_dir}...")
snapshot_download(repo_id=repo_id, local_dir=local_dir)
print(f"Repository downloaded to: {local_dir}")
_yolo_model = get_yolo_model(model_path='weights/icon_detect/model.pt')
_caption_model_processor = get_caption_model_processor(
model_name="florence2",
model_name_or_path="weights/icon_caption",
device=DEVICE
)
return _yolo_model, _caption_model_processor
# Response Models
class BoundingBox(Dict[str, Any]):
"""Bounding box with coordinates"""
pass
class Element(Dict[str, Any]):
"""UI element with all details"""
pass
class ParseResult(Dict[str, Any]):
"""Complete parse result"""
pass
@app.on_event("startup")
async def startup_event():
"""Load models on startup"""
try:
load_models()
print("Models loaded successfully")
except Exception as e:
print(f"Warning: Models not fully loaded on startup: {e}")
@app.get("/health")
async def health_check():
"""Health check endpoint"""
return {
"status": "healthy",
"service": "OmniParser API",
"version": "2.0.0",
"device": str(DEVICE)
}
@app.get("/info")
async def info():
"""Get API information"""
return {
"name": "OmniParser V2",
"description": "Screen parsing tool to convert general GUI screens to structured elements",
"version": "2.0.0",
"device": str(DEVICE),
"endpoints": {
"parse": "/parse - POST - Parse an image and return structured elements",
"parse_detailed": "/parse/detailed - POST - Parse with full coordinate details",
"parse_batch": "/parse/batch - POST - Parse multiple images"
},
"parameters": {
"box_threshold": "Confidence threshold for bounding boxes (0.01-1.0)",
"iou_threshold": "IOU threshold (0.01-1.0)",
"use_paddleocr": "Use PaddleOCR for text detection (true/false)",
"imgsz": "Image size for detection (640-1920, step 32)"
}
}
@app.post("/parse")
async def parse_image(
file: UploadFile = File(...),
box_threshold: float = Form(0.05),
iou_threshold: float = Form(0.1),
use_paddleocr: bool = Form(True),
imgsz: int = Form(640)
):
"""
Parse an image and return UI elements.
Returns:
- elements: List of detected UI elements
- count: Total number of elements
- image_base64: Parsed image with bounding boxes
"""
try:
# Validate parameters
if not 0.01 <= box_threshold <= 1.0:
raise ValueError("box_threshold must be between 0.01 and 1.0")
if not 0.01 <= iou_threshold <= 1.0:
raise ValueError("iou_threshold must be between 0.01 and 1.0")
if not (640 <= imgsz <= 1920 and imgsz % 32 == 0):
raise ValueError("imgsz must be between 640-1920 and divisible by 32")
# Read image
contents = await file.read()
image = Image.open(io.BytesIO(contents))
# Convert RGBA to RGB if necessary
if image.mode == 'RGBA':
image = image.convert('RGB')
# Load models
yolo_model, caption_model_processor = load_models()
# Process image
box_overlay_ratio = image.size[0] / 3200
draw_bbox_config = {
'text_scale': 0.8 * box_overlay_ratio,
'text_thickness': max(int(2 * box_overlay_ratio), 1),
'text_padding': max(int(3 * box_overlay_ratio), 1),
'thickness': max(int(3 * box_overlay_ratio), 1),
}
ocr_bbox_rslt, _ = check_ocr_box(
image,
display_img=False,
output_bb_format='xyxy',
goal_filtering=None,
easyocr_args={'paragraph': False, 'text_threshold': 0.9},
use_paddleocr=use_paddleocr
)
text, ocr_bbox = ocr_bbox_rslt
dino_labled_img, label_coordinates, parsed_content_list = get_som_labeled_img(
image,
yolo_model,
BOX_TRESHOLD=box_threshold,
output_coord_in_ratio=True,
ocr_bbox=ocr_bbox,
draw_bbox_config=draw_bbox_config,
caption_model_processor=caption_model_processor,
ocr_text=text,
iou_threshold=iou_threshold,
imgsz=imgsz,
use_local_semantics=True,
scale_img=False,
batch_size=128
)
# Format results
elements = [f"icon {i}: {str(v)}" for i, v in enumerate(parsed_content_list)]
return {
"status": "success",
"elements": elements,
"count": len(elements),
"image_base64": dino_labled_img,
"parameters": {
"box_threshold": box_threshold,
"iou_threshold": iou_threshold,
"use_paddleocr": use_paddleocr,
"imgsz": imgsz
}
}
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
import traceback
traceback.print_exc()
raise HTTPException(status_code=500, detail=f"Processing error: {str(e)}")
@app.post("/parse/detailed")
async def parse_image_detailed(
file: UploadFile = File(...),
box_threshold: float = Form(0.05),
iou_threshold: float = Form(0.1),
use_paddleocr: bool = Form(True),
imgsz: int = Form(640)
):
"""
Parse an image with detailed coordinate information.
Returns:
- elements: List of elements with full coordinate details
- coordinates: Bounding box coordinates for each element
- image_size: Original image dimensions
- image_base64: Parsed image with annotations
"""
try:
# Validate parameters
if not 0.01 <= box_threshold <= 1.0:
raise ValueError("box_threshold must be between 0.01 and 1.0")
if not 0.01 <= iou_threshold <= 1.0:
raise ValueError("iou_threshold must be between 0.01 and 1.0")
if not (640 <= imgsz <= 1920 and imgsz % 32 == 0):
raise ValueError("imgsz must be between 640-1920 and divisible by 32")
# Read image
contents = await file.read()
image = Image.open(io.BytesIO(contents))
# Convert RGBA to RGB if necessary
if image.mode == 'RGBA':
image = image.convert('RGB')
original_size = image.size
# Load models
yolo_model, caption_model_processor = load_models()
# Process image
box_overlay_ratio = image.size[0] / 3200
draw_bbox_config = {
'text_scale': 0.8 * box_overlay_ratio,
'text_thickness': max(int(2 * box_overlay_ratio), 1),
'text_padding': max(int(3 * box_overlay_ratio), 1),
'thickness': max(int(3 * box_overlay_ratio), 1),
}
ocr_bbox_rslt, _ = check_ocr_box(
image,
display_img=False,
output_bb_format='xyxy',
goal_filtering=None,
easyocr_args={'paragraph': False, 'text_threshold': 0.9},
use_paddleocr=use_paddleocr
)
text, ocr_bbox = ocr_bbox_rslt
dino_labled_img, label_coordinates, parsed_content_list = get_som_labeled_img(
image,
yolo_model,
BOX_TRESHOLD=box_threshold,
output_coord_in_ratio=True,
ocr_bbox=ocr_bbox,
draw_bbox_config=draw_bbox_config,
caption_model_processor=caption_model_processor,
ocr_text=text,
iou_threshold=iou_threshold,
imgsz=imgsz,
use_local_semantics=True,
scale_img=False,
batch_size=128
)
# Format detailed results with coordinates
elements_detailed = []
for i, (content, coords) in enumerate(zip(parsed_content_list, label_coordinates.values())):
# coords are in ratio format (0-1) from get_som_labeled_img
element = {
"id": i,
"label": f"icon_{i}",
"content": str(content),
"coordinates": {
"format": "normalized_bbox", # Values are between 0 and 1
"x_min": float(coords[0]) if len(coords) > 0 else 0,
"y_min": float(coords[1]) if len(coords) > 1 else 0,
"x_max": float(coords[2]) if len(coords) > 2 else 0,
"y_max": float(coords[3]) if len(coords) > 3 else 0,
"width": float(coords[2] - coords[0]) if len(coords) > 2 else 0,
"height": float(coords[3] - coords[1]) if len(coords) > 3 else 0,
"center_x": float((coords[0] + coords[2]) / 2) if len(coords) > 2 else 0,
"center_y": float((coords[1] + coords[3]) / 2) if len(coords) > 3 else 0,
"pixel_coordinates": {
"x_min": int(coords[0] * original_size[0]) if len(coords) > 0 else 0,
"y_min": int(coords[1] * original_size[1]) if len(coords) > 1 else 0,
"x_max": int(coords[2] * original_size[0]) if len(coords) > 2 else 0,
"y_max": int(coords[3] * original_size[1]) if len(coords) > 3 else 0,
}
}
}
elements_detailed.append(element)
return {
"status": "success",
"image_size": {
"width": original_size[0],
"height": original_size[1]
},
"elements": elements_detailed,
"count": len(elements_detailed),
"image_base64": dino_labled_img,
"parameters": {
"box_threshold": box_threshold,
"iou_threshold": iou_threshold,
"use_paddleocr": use_paddleocr,
"imgsz": imgsz
}
}
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
import traceback
traceback.print_exc()
raise HTTPException(status_code=500, detail=f"Processing error: {str(e)}")
@app.post("/parse/batch")
async def parse_batch(
files: List[UploadFile] = File(...),
box_threshold: float = Form(0.05),
iou_threshold: float = Form(0.1),
use_paddleocr: bool = Form(True),
imgsz: int = Form(640)
):
"""
Parse multiple images in batch.
Returns:
- results: List of parse results for each image
- total_processed: Total number of images processed
- errors: Any errors encountered
"""
results = []
errors = []
try:
# Validate parameters
if not 0.01 <= box_threshold <= 1.0:
raise ValueError("box_threshold must be between 0.01 and 1.0")
if not 0.01 <= iou_threshold <= 1.0:
raise ValueError("iou_threshold must be between 0.01 and 1.0")
if not (640 <= imgsz <= 1920 and imgsz % 32 == 0):
raise ValueError("imgsz must be between 640-1920 and divisible by 32")
# Load models once
yolo_model, caption_model_processor = load_models()
for idx, file in enumerate(files):
try:
contents = await file.read()
image = Image.open(io.BytesIO(contents))
# Convert RGBA to RGB if necessary
if image.mode == 'RGBA':
image = image.convert('RGB')
box_overlay_ratio = image.size[0] / 3200
draw_bbox_config = {
'text_scale': 0.8 * box_overlay_ratio,
'text_thickness': max(int(2 * box_overlay_ratio), 1),
'text_padding': max(int(3 * box_overlay_ratio), 1),
'thickness': max(int(3 * box_overlay_ratio), 1),
}
ocr_bbox_rslt, _ = check_ocr_box(
image,
display_img=False,
output_bb_format='xyxy',
goal_filtering=None,
easyocr_args={'paragraph': False, 'text_threshold': 0.9},
use_paddleocr=use_paddleocr
)
text, ocr_bbox = ocr_bbox_rslt
dino_labled_img, label_coordinates, parsed_content_list = get_som_labeled_img(
image,
yolo_model,
BOX_TRESHOLD=box_threshold,
output_coord_in_ratio=True,
ocr_bbox=ocr_bbox,
draw_bbox_config=draw_bbox_config,
caption_model_processor=caption_model_processor,
ocr_text=text,
iou_threshold=iou_threshold,
imgsz=imgsz,
use_local_semantics=True,
scale_img=False,
batch_size=128
)
elements = [f"icon {i}: {str(v)}" for i, v in enumerate(parsed_content_list)]
results.append({
"filename": file.filename,
"status": "success",
"elements": elements,
"count": len(elements)
})
except Exception as e:
errors.append({
"filename": file.filename,
"error": str(e)
})
return {
"status": "completed",
"total_processed": len(results),
"total_errors": len(errors),
"results": results,
"errors": errors if errors else None
}
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
import traceback
traceback.print_exc()
raise HTTPException(status_code=500, detail=f"Batch processing error: {str(e)}")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|