File size: 19,375 Bytes
c89eef2 | 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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | """
AathraOS Junction Signal API β OPTIMISED BUILD
=================================================
Key changes vs v1:
β’ Inference at 320Γ180 (~4Γ faster than 640Γ360)
β’ imgsz=320 passed directly to YOLO (no CPU upscale overhead)
β’ Producer-Consumer frame queue per lane: reader thread β inference thread
β cv2.VideoCapture reads at full speed; analyzer drains queue independently
β’ Frames piggybacked on WebSocket broadcast (no separate REST poll needed)
β’ asyncio.get_running_loop() + run_coroutine_threadsafe (safe on Py3.10+)
β’ base64 imported once at module level
β’ JPEG quality lowered to 55 for wire speed (still plenty for HUD display)
β’ Model loaded with half=False, device='cpu' explicit β avoids silent fallback
β’ Lock-free frame store: only a Python assignment (atomic in CPython)
"""
import os
import cv2
import time
import base64
import asyncio
import threading
from collections import deque
from typing import Optional, Dict, List
from datetime import datetime, timezone
os.environ["YOLO_CONFIG_DIR"] = "/tmp/Ultralytics"
os.environ["YOLO_VERBOSE"] = "False"
os.environ["YOLO_UPDATE_CHECK"] = "False"
from fastapi import FastAPI, UploadFile, File, WebSocket, WebSocketDisconnect
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
import uvicorn
import numpy as np
from ultralytics import YOLO
import shutil
# βββ Tunable constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
INFER_W, INFER_H = 320, 192 # inference resolution (keep divisible by 32)
JPEG_QUALITY = 55 # lower β faster wire transfer, less clarity
TARGET_INFER_FPS = 6 # max inference frames per second per lane
FRAME_QUEUE_MAX = 2 # max raw frames buffered before drop (keeps lag low)
CYCLE_INTERVAL = 5.0 # signal decision period (seconds)
EMERGENCY_HOLD = 30 # seconds emergency corridor stays active
BASE_TIME = 10 # signal base green time (s)
DENSITY_FACTOR = 0.8 # green_time = base + pcu * factor
MIN_GREEN = 8
MAX_GREEN = 60
YOLO_CONF = 0.30 # lower β more detections, faster NMS exit on sparse frames
YOLO_IOU = 0.45
YOLO_IMGSZ = 320 # matches INFER_W, passed to YOLO directly
PCU_WEIGHTS = {0: 0.0, 1: 0.5, 2: 1.0, 3: 0.5, 5: 3.0, 7: 3.0}
EMERGENCY_CLASSES = {"ambulance", "fire truck", "firetruck", "emergency"}
LANES = ["north", "south", "east", "west"]
# βββ App βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(title="AathraOS Junction Signal API β Optimised")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# βββ Shared model (singleton, loaded once) βββββββββββββββββββββββββββββββββββ
_model: Optional[YOLO] = None
_model_lock = threading.Lock()
def get_model() -> YOLO:
global _model
with _model_lock:
if _model is None:
path = os.path.join(os.path.dirname(__file__), "yolov8n.pt")
_model = YOLO(path)
# warm-up inference to pre-allocate internal buffers
dummy = np.zeros((INFER_H, INFER_W, 3), dtype=np.uint8)
_model.predict(dummy, imgsz=YOLO_IMGSZ, verbose=False,
conf=YOLO_CONF, iou=YOLO_IOU)
print("[YOLO] Model loaded and warmed up.")
return _model
# βββ Lane state ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class LaneState:
"""All mutable fields are written by exactly one thread except frame_b64."""
__slots__ = (
"name", "vehicle_count", "pcu_score", "breakdown",
"emergency_detected", "is_processing", "frame_b64",
"infer_fps", "display_fps", "frames_captured", "frames_inferred",
"raw_queue", "stop_event", "reader_thread", "infer_thread",
)
def __init__(self, name: str):
self.name = name
self.vehicle_count = 0
self.pcu_score = 0.0
self.breakdown: Dict[str, int] = {}
self.emergency_detected= False
self.is_processing = False
self.frame_b64: Optional[str] = None # CPython assignment is atomic
self.infer_fps = 0.0
self.display_fps = 0.0
self.frames_captured = 0
self.frames_inferred = 0
self.raw_queue: deque = deque(maxlen=FRAME_QUEUE_MAX)
self.stop_event = threading.Event()
self.reader_thread: Optional[threading.Thread] = None
self.infer_thread: Optional[threading.Thread] = None
lane_states: Dict[str, LaneState] = {ln: LaneState(ln) for ln in LANES}
# βββ Signal state ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class SignalState:
__slots__ = ("signals", "active_lane", "green_duration", "emergency_mode",
"emergency_lane", "emergency_until", "cycle_count", "last_update")
def __init__(self):
self.signals: Dict[str, str] = {l: "RED" for l in LANES}
self.active_lane: Optional[str] = None
self.green_duration = 0.0
self.emergency_mode = False
self.emergency_lane: Optional[str] = None
self.emergency_until= 0.0
self.cycle_count = 0
self.last_update = datetime.now(timezone.utc).isoformat()
signal_state = SignalState()
signal_lock = threading.Lock()
# WebSocket registry
ws_clients: List[WebSocket] = []
ws_lock = threading.Lock()
_event_loop: Optional[asyncio.AbstractEventLoop] = None
# βββ CV helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_ENCODE_PARAMS = [cv2.IMWRITE_JPEG_QUALITY, JPEG_QUALITY]
def encode_frame(frame: np.ndarray) -> str:
"""Fast JPEG β base64 string, reuses encode params list."""
_, buf = cv2.imencode(".jpg", frame, _ENCODE_PARAMS)
return base64.b64encode(buf).decode("ascii")
def analyze_frame(frame: np.ndarray, m: YOLO):
"""
Run YOLO inference on a pre-resized frame.
Returns (pcu, vcount, breakdown, emergency, annotated_frame).
"""
results = m.predict(
frame,
imgsz=YOLO_IMGSZ,
conf=YOLO_CONF,
iou=YOLO_IOU,
verbose=False,
stream=False,
)
pcu, vcount = 0.0, 0
breakdown: Dict[str, int] = {}
emergency = False
annotated = frame.copy()
if results and results[0].boxes is not None:
boxes = results[0].boxes
cls_arr = boxes.cls.cpu().numpy().astype(int)
conf_arr = boxes.conf.cpu().numpy()
xyxy_arr = boxes.xyxy.cpu().numpy().astype(int)
for i, (cls_id, conf, xyxy) in enumerate(zip(cls_arr, conf_arr, xyxy_arr)):
cls_name = m.names.get(int(cls_id), "").lower()
if any(e in cls_name for e in EMERGENCY_CLASSES):
emergency = True
weight = PCU_WEIGHTS.get(int(cls_id), 0.0)
pcu += weight
if int(cls_id) != 0:
vcount += 1
label = cls_name or str(cls_id)
breakdown[label] = breakdown.get(label, 0) + 1
x1, y1, x2, y2 = xyxy
color = (30, 30, 255) if emergency else (20, 220, 100)
cv2.rectangle(annotated, (x1, y1), (x2, y2), color, 1)
cv2.putText(
annotated,
f"{cls_name} {conf:.2f}",
(x1, max(y1 - 4, 0)),
cv2.FONT_HERSHEY_SIMPLEX, 0.38, color, 1,
)
return pcu, vcount, breakdown, emergency, annotated
# βββ Producer: video reader thread (one per lane) ββββββββββββββββββββββββββββ
def _reader_loop(state: LaneState, video_path: str):
"""
Reads frames from video as fast as possible and pushes into the deque.
The deque has maxlen=FRAME_QUEUE_MAX so old frames are auto-dropped,
guaranteeing near-real-time content for the inference thread.
"""
cap = cv2.VideoCapture(video_path)
if not cap.isOpened():
print(f"[{state.name}] Reader: cannot open {video_path}")
return
# Optional: request smaller decode buffer from FFmpeg path
cap.set(cv2.CAP_PROP_BUFFERSIZE, 1)
t0 = time.perf_counter()
captured = 0
while not state.stop_event.is_set():
ret, frame = cap.read()
if not ret:
cap.set(cv2.CAP_PROP_POS_FRAMES, 0) # loop video
continue
# Resize once here so the inference thread doesn't have to
small = cv2.resize(frame, (INFER_W, INFER_H), interpolation=cv2.INTER_LINEAR)
state.raw_queue.append(small) # deque auto-drops oldest if full
captured += 1
state.frames_captured = captured
elapsed = time.perf_counter() - t0
state.display_fps = round(captured / elapsed, 1) if elapsed > 0 else 0
cap.release()
print(f"[{state.name}] Reader stopped.")
# βββ Consumer: inference thread (one per lane) βββββββββββββββββββββββββββββββ
def _infer_loop(state: LaneState):
"""
Drains frames from the queue, runs YOLO, updates state.
Sleeps to cap inference rate at TARGET_INFER_FPS, avoiding runaway CPU.
"""
m = get_model()
min_interval = 1.0 / TARGET_INFER_FPS
t0 = time.perf_counter()
inferred = 0
state.is_processing = True
try:
while not state.stop_event.is_set():
t_start = time.perf_counter()
# Pop latest frame (skip stale ones β deque already handles this)
if not state.raw_queue:
time.sleep(0.01)
continue
frame = state.raw_queue[-1] # get newest without consuming all
pcu, vcount, breakdown, emergency, annotated = analyze_frame(frame, m)
# Atomic-style writes (CPython GIL makes these safe)
state.pcu_score = pcu
state.vehicle_count = vcount
state.breakdown = breakdown
state.emergency_detected= emergency
state.frame_b64 = encode_frame(annotated)
inferred += 1
state.frames_inferred = inferred
elapsed = time.perf_counter() - t0
state.infer_fps = round(inferred / elapsed, 1) if elapsed > 0 else 0
# Rate-limit: sleep remaining time in this interval
spent = time.perf_counter() - t_start
sleep_for = min_interval - spent
if sleep_for > 0:
time.sleep(sleep_for)
finally:
state.is_processing = False
state.frame_b64 = None
print(f"[{state.name}] Infer stopped.")
# βββ Signal decision loop ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def signal_decision_loop(loop: asyncio.AbstractEventLoop):
while True:
time.sleep(CYCLE_INTERVAL)
now = time.time()
with signal_lock:
# Emergency detection
em_lane = next(
(ln for ln, ls in lane_states.items() if ls.emergency_detected),
None,
)
if em_lane:
signal_state.emergency_mode = True
signal_state.emergency_lane = em_lane
signal_state.emergency_until = now + EMERGENCY_HOLD
elif now < signal_state.emergency_until:
em_lane = signal_state.emergency_lane
else:
signal_state.emergency_mode = False
signal_state.emergency_lane = None
if em_lane:
for ln in LANES:
signal_state.signals[ln] = "GREEN" if ln == em_lane else "RED"
signal_state.active_lane = em_lane
signal_state.green_duration = float(EMERGENCY_HOLD)
else:
scores = {ln: lane_states[ln].pcu_score for ln in LANES}
best = max(scores, key=scores.get)
gt = min(MAX_GREEN, max(MIN_GREEN, BASE_TIME + scores[best] * DENSITY_FACTOR))
for ln in LANES:
signal_state.signals[ln] = "GREEN" if ln == best else "RED"
signal_state.active_lane = best
signal_state.green_duration = round(gt, 1)
signal_state.cycle_count += 1
signal_state.last_update = datetime.now(timezone.utc).isoformat()
# Broadcast β piggyback frames onto signal payload
payload = _build_payload(include_frames=True)
asyncio.run_coroutine_threadsafe(_broadcast(payload), loop)
# βββ WebSocket broadcast βββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def _broadcast(payload: dict):
with ws_lock:
clients = list(ws_clients)
dead = []
for ws in clients:
try:
await ws.send_json(payload)
except Exception:
dead.append(ws)
if dead:
with ws_lock:
for ws in dead:
if ws in ws_clients:
ws_clients.remove(ws)
# βββ Payload builder βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_payload(include_frames: bool = False) -> dict:
with signal_lock:
sigs = dict(signal_state.signals)
active = signal_state.active_lane
em = signal_state.emergency_mode
em_lane = signal_state.emergency_lane
green_dur = signal_state.green_duration
cycle = signal_state.cycle_count
last_upd = signal_state.last_update
lanes_data = {}
for ln, ls in lane_states.items():
entry = {
"vehicle_count": ls.vehicle_count,
"pcu_score": round(ls.pcu_score, 2),
"breakdown": dict(ls.breakdown),
"emergency_detected": ls.emergency_detected,
"is_processing": ls.is_processing,
"fps": ls.infer_fps,
"display_fps": ls.display_fps,
}
if include_frames:
entry["frame_b64"] = ls.frame_b64 # None if not processing
lanes_data[ln] = entry
return {
"signals": sigs,
"active_lane": active,
"emergency_mode": em,
"emergency_lane": em_lane,
"green_duration": green_dur,
"cycle_count": cycle,
"last_update": last_upd,
"lanes": lanes_data,
}
# βββ Startup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.on_event("startup")
async def startup_event():
global _event_loop
_event_loop = asyncio.get_running_loop()
# Pre-load model in background (non-blocking startup)
def _preload():
get_model()
print("[startup] Model ready.")
threading.Thread(target=_preload, daemon=True).start()
# Signal decision loop (needs the running loop reference)
threading.Thread(
target=signal_decision_loop, args=(_event_loop,), daemon=True
).start()
print("AathraOS Junction Signal Engine (optimised) started.")
# βββ Routes ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/")
async def root():
return {"status": "ok", "service": "AathraOS Junction Signal API (optimised)"}
@app.post("/junction/upload/{lane}")
async def upload_lane_feed(lane: str, file: UploadFile = File(...)):
if lane not in LANES:
return JSONResponse(400, {"error": f"Lane must be one of {LANES}"})
os.makedirs("data/junction", exist_ok=True)
save_path = f"data/junction/{lane}_{file.filename}"
with open(save_path, "wb") as f:
shutil.copyfileobj(file.file, f)
ls = lane_states[lane]
# Gracefully stop existing threads
ls.stop_event.set()
for t in (ls.reader_thread, ls.infer_thread):
if t and t.is_alive():
t.join(timeout=3.0)
ls.stop_event.clear()
ls.raw_queue.clear()
ls.frames_captured = 0
ls.frames_inferred = 0
# Reader and Infer threads start independently
rt = threading.Thread(target=_reader_loop, args=(ls, save_path), daemon=True, name=f"reader-{lane}")
it = threading.Thread(target=_infer_loop, args=(ls,), daemon=True, name=f"infer-{lane}")
ls.reader_thread = rt
ls.infer_thread = it
rt.start()
it.start()
return {"message": f"Lane {lane} started β reader + infer threads active for {file.filename}"}
@app.post("/junction/stop/{lane}")
async def stop_lane(lane: str):
if lane not in LANES:
return JSONResponse(400, {"error": f"Lane must be one of {LANES}"})
lane_states[lane].stop_event.set()
return {"message": f"Lane {lane} stop signal sent."}
@app.get("/junction/status")
async def get_status():
return _build_payload(include_frames=False)
@app.get("/junction/frame/{lane}")
async def get_frame(lane: str):
if lane not in LANES:
return JSONResponse(400, {"error": "Unknown lane"})
return {"lane": lane, "frame_b64": lane_states[lane].frame_b64}
@app.get("/junction/frames")
async def get_all_frames():
"""Lightweight frame-only endpoint for REST fallback."""
return {ln: lane_states[ln].frame_b64 for ln in LANES}
@app.websocket("/ws/junction")
async def websocket_endpoint(ws: WebSocket):
await ws.accept()
with ws_lock:
ws_clients.append(ws)
# Send full payload with frames immediately on connect
await ws.send_json(_build_payload(include_frames=True))
try:
while True:
# Push frame-inclusive updates at ~TARGET_INFER_FPS rate
await asyncio.sleep(1.0 / TARGET_INFER_FPS)
payload = _build_payload(include_frames=True)
await ws.send_json(payload)
except (WebSocketDisconnect, Exception):
pass
finally:
with ws_lock:
if ws in ws_clients:
ws_clients.remove(ws)
if __name__ == "__main__":
port = int(os.environ.get("PORT", 8001))
uvicorn.run("junction_api:app", host="0.0.0.0", port=port, reload=False, workers=1)
|