Spaces:
Sleeping
Sleeping
File size: 4,039 Bytes
152df72 c842ab7 4e099cb c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 c842ab7 152df72 4e099cb |
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 |
"""
api_backend.py
FastAPI backend for flowchart-to-English processing. This API supports receiving
an image file, running YOLO-based detection to identify boxes and arrows, performing
OCR, and generating structured JSON + English summary of the flowchart.
Endpoints:
- POST /process-image: Accepts image input and returns structured flowchart data.
"""
from fastapi import FastAPI, UploadFile, File, Form
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
import uvicorn
from PIL import Image
import io
import json
import base64
import os
# π§ Import local processing modules
from yolo_module import run_yolo
from ocr_module import extract_text, count_elements, validate_structure
from graph_module import map_arrows, build_flowchart_json
from summarizer_module import summarize_flowchart
# π₯ Initialize FastAPI app
app = FastAPI()
# π Enable CORS to allow frontend (e.g., Streamlit on localhost) to connect
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # In production, replace with allowed frontend domain
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.post("/process-image")
async def process_image(
file: UploadFile = File(...),
debug: str = Form("false")
):
"""
Receives an uploaded flowchart image, performs object detection and OCR,
constructs a structured flowchart JSON, and generates a plain-English summary.
Args:
file (UploadFile): Flowchart image file (.png, .jpg, .jpeg).
debug (str): "true" to enable debug mode (includes OCR logs and YOLO preview).
Returns:
JSONResponse: Contains flowchart structure, summary, debug output, and optional YOLO overlay.
"""
debug_mode = debug.lower() == "true"
debug_log = []
if debug_mode:
debug_log.append("π₯ Received file upload")
print(f"π₯ File received: {file.filename}")
# πΌοΈ Convert file bytes to RGB image
contents = await file.read()
image = Image.open(io.BytesIO(contents)).convert("RGB")
if debug_mode:
debug_log.append("β
Image converted to RGB")
print("β
Image converted to RGB")
# π¦ YOLO Detection for boxes and arrows
boxes, arrows, vis_debug = run_yolo(image)
if debug_mode:
debug_log.append(f"π¦ Detected {len(boxes)} boxes, {len(arrows)} arrows")
# π Run OCR on each detected box
for box in boxes:
box["text"] = extract_text(image, box["bbox"], debug=debug_mode)
print(f"π OCR for {box['id']}: {box['text']}")
if debug_mode:
debug_log.append(f"π {box['id']}: {box['text']}")
# π§ Build structured JSON from nodes and edges
flowchart_json = build_flowchart_json(boxes, arrows)
print("π§ Flowchart JSON:", json.dumps(flowchart_json, indent=2))
# β
Validate structure
structure_info = count_elements(boxes, arrows, debug=debug_mode)
validation = validate_structure(
flowchart_json,
expected_boxes=structure_info["box_count"],
expected_arrows=len(arrows),
debug=debug_mode
)
if debug_mode:
debug_log.append(f"π§Ύ Validation: {validation}")
# βοΈ Generate plain-English summary
summary = summarize_flowchart(flowchart_json)
print("π Summary:", summary)
# πΌοΈ Encode YOLO debug image (if debug enabled)
yolo_vis = None
if debug_mode and vis_debug:
vis_io = io.BytesIO()
vis_debug.save(vis_io, format="PNG")
yolo_vis = base64.b64encode(vis_io.getvalue()).decode("utf-8")
# π€ Return full response
return JSONResponse({
"flowchart": flowchart_json,
"summary": summary,
"yolo_vis": yolo_vis,
"debug": "\n".join(debug_log) if debug_mode else ""
})
if __name__ == "__main__":
# Run the FastAPI app using Uvicorn
# Get port from environment variable or use default 7860
port = int(os.getenv("API_PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port) |