File size: 17,880 Bytes
c25b15a 05078f2 c25b15a 05078f2 c25b15a 05078f2 c25b15a | 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 | """
solution.py β AID 728 Traffic Rule Violation Detection
=======================================================
Pipeline:
1. YOLOv8s (COCO) + custom bike detector β bike boxes + person boxes + car boxes
2. Depth-Anything V2 (fp16) β depth map for personβbike association
3. Helmet classifier (YOLO) β helmet / no-helmet per rider
4. license.pt (YOLO) β license plate bounding box
5. PaddleOCR 3.5.0 (mobile det+rec) β plate text via legacy ocr() API
6. Roboflow inference_sdk β wrong-way vehicle classification
7. Roboflow inference_sdk β seatbelt classification for cars
"""
import os
import re
from pathlib import Path
# Point paddlex to bundled offline models BEFORE any paddle import.
_MODEL_DIR = Path(__file__).parent / "models"
os.environ["PADDLE_PDX_CACHE_HOME"] = str(_MODEL_DIR / "paddleocr")
import cv2
import numpy as np
import torch
from PIL import Image
from transformers import pipeline as hf_pipeline
from ultralytics import YOLO
from paddleocr import PaddleOCR
import requests as _requests
import base64 as _base64
ROBOFLOW_API_KEY = "SEsiEStxDAHdOx2SCo3k"
def _roboflow_infer(image_input, model_id):
"""Call the Roboflow serverless API using plain requests (no inference-sdk needed)."""
try:
if isinstance(image_input, str):
with open(image_input, "rb") as f:
img_bytes = f.read()
elif isinstance(image_input, np.ndarray):
_, buf = cv2.imencode(".jpg", image_input)
img_bytes = buf.tobytes()
else:
return {}
img_b64 = _base64.b64encode(img_bytes).decode("utf-8")
url = f"https://serverless.roboflow.com/{model_id}"
resp = _requests.post(
url,
params={"api_key": ROBOFLOW_API_KEY},
json={"image": [{"type": "base64", "value": img_b64}]},
timeout=30,
)
# Try v2 response format first, fall back to v1
data = resp.json()
if isinstance(data, list) and len(data) > 0:
return data[0]
return data
except Exception as e:
print(f"[Warning] Roboflow API error for {model_id}: {e}")
return {}
# ββ CONSTANTS βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
COCO_PERSON = 0
COCO_MOTO = 3
COCO_CAR = 2
COCO_BUS = 5
COCO_TRUCK = 7
FOUR_WHEELERS = {COCO_CAR, COCO_BUS, COCO_TRUCK}
COCO_CONF = 0.30; COCO_IOU = 0.45
S1_CONF = 0.344; S1_IOU = 0.45
S3_CONF = 0.25; S3_IOU = 0.60
S4_CONF = 0.20
PERSON_BIKE_IOU_THRESH = 0.10
PERSON_BIKE_COL_MARGIN = 0.35
HEAD_CROP_FRACTION = 0.45
HEAD_CROP_MIN_PX = 40
DEPTH_THRESHOLD = 0.35
OCR_MIN_CONF = 0.25
class TrafficViolationDetector:
"""
Detects traffic violations on vehicles in a single RGB image.
All models loaded once in __init__; predict() is fully stateless.
"""
def __init__(self, model_dir: str = "./models"):
md = Path(model_dir)
# Ensure paddlex finds bundled offline models
os.environ["PADDLE_PDX_CACHE_HOME"] = str(md / "paddleocr")
# 1. Depth estimation
self.depth_estimator = hf_pipeline(
"depth-estimation",
model=(md / "depth_anything_v2").as_posix(),
device=0 if torch.cuda.is_available() else -1,
dtype=torch.float32,
)
# 2. YOLO models
self.s_coco = YOLO(str(md / "yolov8s.pt"))
self.s1 = YOLO(str(md / "stage1_best.pt"))
self.s3 = YOLO(str(md / "helmet_v11.pt"))
self.s4 = YOLO(str(md / "license.pt"))
# 3. Super-resolution
self.sr_engine, self.has_sr = self._init_sr(md / "FSRCNN_x3.pb")
# 4. PaddleOCR
self.ocr_engine = PaddleOCR(
lang="en",
device="cpu",
enable_mkldnn=False,
text_detection_model_name="PP-OCRv5_mobile_det",
text_recognition_model_name="en_PP-OCRv5_mobile_rec",
)
# ββ helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@staticmethod
def _init_sr(sr_path):
try:
sr = cv2.dnn_superres.DnnSuperResImpl_create()
except AttributeError:
return None, False
if Path(sr_path).exists():
try:
sr.readModel(str(sr_path))
sr.setModel("fsrcnn", 3)
return sr, True
except Exception:
pass
return sr, False
@staticmethod
def _box_iou(a, b):
ax1, ay1, ax2, ay2 = a
bx1, by1, bx2, by2 = b
ix1 = max(ax1, bx1); iy1 = max(ay1, by1)
ix2 = min(ax2, bx2); iy2 = min(ay2, by2)
inter = max(0.0, ix2 - ix1) * max(0.0, iy2 - iy1)
if inter == 0:
return 0.0
return inter / ((ax2-ax1)*(ay2-ay1) + (bx2-bx1)*(by2-by1) - inter + 1e-6)
@staticmethod
def _region_depth(depth_map, x1, y1, x2, y2):
h, w = depth_map.shape
x1, y1 = max(0, int(x1)), max(0, int(y1))
x2, y2 = min(w, int(x2)), min(h, int(y2))
patch = depth_map[y1:y2, x1:x2]
return float(np.median(patch)) if patch.size > 0 else 0.5
def _is_depth_ok(self, pd, bd):
if bd < 0.05:
return abs(pd - bd) <= DEPTH_THRESHOLD * 0.5
return abs(pd - bd) / (bd + 1e-6) <= DEPTH_THRESHOLD
def _merge_bike_boxes(self, coco, custom, iou_thresh=0.45):
if not coco and not custom:
return np.zeros((0, 4), dtype=np.float32)
if not coco:
return np.array(custom, dtype=np.float32)
if not custom:
return np.array(coco, dtype=np.float32)
merged = list(coco)
for cb in custom:
if not any(self._box_iou(cb, mb) > iou_thresh for mb in merged):
merged.append(cb)
return np.array(merged, dtype=np.float32)
def _associate_persons_to_bikes(self, person_boxes, bike_boxes, depth_map, h, w):
bike_persons = [[] for _ in range(len(bike_boxes))]
for p_box in person_boxes:
px1, py1, px2, py2 = p_box
p_cx = (px1 + px2) / 2
p_bottom = py2
best_bike, best_score = -1, -1.0
for b_idx, b_box in enumerate(bike_boxes):
bx1, by1, bx2, by2 = b_box
bw = bx2 - bx1
iou = self._box_iou(p_box, b_box)
in_col = (
bx1 - PERSON_BIKE_COL_MARGIN * bw <= p_cx <= bx2 + PERSON_BIKE_COL_MARGIN * bw
and p_bottom <= by2 + 0.3 * (by2 - by1)
)
if iou < PERSON_BIKE_IOU_THRESH and not in_col:
continue
pd_val = self._region_depth(depth_map, px1, py1, px2, py2)
bd_val = self._region_depth(depth_map, bx1, by1, bx2, by2)
if not self._is_depth_ok(pd_val, bd_val):
continue
score = iou + 0.5 * (1.0 - abs(p_cx - (bx1 + bx2) / 2) / (w + 1e-6))
if score > best_score:
best_score, best_bike = score, b_idx
if best_bike >= 0:
bike_persons[best_bike].append(p_box)
return bike_persons
def _get_depth_map(self, image_cv):
img_rgb = cv2.cvtColor(image_cv, cv2.COLOR_BGR2RGB)
result = self.depth_estimator(Image.fromarray(img_rgb))
depth = np.array(result["depth"]).astype(np.float32)
lo, hi = depth.min(), depth.max()
depth = (depth - lo) / (hi - lo + 1e-8)
if depth.shape != image_cv.shape[:2]:
depth = cv2.resize(depth, (image_cv.shape[1], image_cv.shape[0]))
return depth
def _classify_helmets(self, full_image, person_boxes):
if not person_boxes:
return 0, 0, 0
h_img, w_img = full_image.shape[:2]
with_h = without_h = 0
for p_box in person_boxes:
px1, py1, px2, py2 = map(int, p_box)
head_h = max(int((py2 - py1) * HEAD_CROP_FRACTION), HEAD_CROP_MIN_PX)
pad_x = max(4, int((px2 - px1) * 0.05))
crop = full_image[max(0, py1):min(h_img, py1 + head_h),
max(0, px1 - pad_x):min(w_img, px2 + pad_x)]
if crop.size == 0:
without_h += 1
continue
res = self.s3.predict(crop, conf=S3_CONF, iou=S3_IOU, verbose=False)[0]
if len(res.boxes) == 0:
without_h += 1
elif int(res.boxes[res.boxes.conf.argmax()].cls) == 0:
with_h += 1
else:
without_h += 1
return with_h + without_h, with_h, without_h
def _preprocess_plate(self, plate_img):
h, w = plate_img.shape[:2]
if self.has_sr and self.sr_engine is not None:
try:
plate_img = self.sr_engine.upsample(plate_img)
except Exception:
plate_img = cv2.resize(plate_img, (0, 0), fx=3, fy=3,
interpolation=cv2.INTER_CUBIC)
else:
if h < 100:
scale = 100 / h
plate_img = cv2.resize(plate_img,
(int(w * scale), int(h * scale)),
interpolation=cv2.INTER_CUBIC)
lab = cv2.cvtColor(plate_img, cv2.COLOR_BGR2LAB)
l, a, b = cv2.split(lab)
l = cv2.createCLAHE(clipLimit=3.0, tileGridSize=(4, 4)).apply(l)
plate_img = cv2.cvtColor(cv2.merge([l, a, b]), cv2.COLOR_LAB2BGR)
return cv2.filter2D(plate_img, -1, np.array([[0, -1, 0], [-1, 5, -1], [0, -1, 0]]))
def _run_ocr(self, plate_img):
processed = self._preprocess_plate(plate_img)
texts, scores = [], []
try:
result = self.ocr_engine.ocr(processed)
if result and isinstance(result, list):
for page in result:
if isinstance(page, dict):
page_texts = page.get("rec_texts", [])
page_scores = page.get("rec_scores", [])
for t, s in zip(page_texts, page_scores):
if str(t).strip():
texts.append(str(t).strip())
scores.append(float(s))
elif isinstance(page, list):
for line in page:
if isinstance(line, (list, tuple)) and len(line) == 2:
try:
txt = str(line[1][0])
score = float(line[1][1])
if txt.strip():
texts.append(txt.strip())
scores.append(score)
except (TypeError, ValueError, IndexError):
pass
except Exception:
pass
if not texts:
return "UNKNOWN", 0.0
return " ".join(texts), (sum(scores) / len(scores) if scores else 0.0)
def _extract_plate(self, vehicle_crop, plate_box):
h, w = vehicle_crop.shape[:2]
pad = 4
x1 = max(0, int(plate_box[0]) - pad)
y1 = max(0, int(plate_box[1]) - pad)
x2 = min(w, int(plate_box[2]) + pad)
y2 = min(h, int(plate_box[3]) + pad)
crop = vehicle_crop[y1:y2, x1:x2]
if crop.size == 0:
return "UNKNOWN"
raw, conf = self._run_ocr(crop)
if conf < OCR_MIN_CONF:
return "UNKNOWN"
text = re.sub(r"[^A-Z0-9 \-]", "", raw.upper())
text = re.sub(r"\s+", " ", text).strip()
tokens = [t for t in text.split() if len(t) > 1]
return " ".join(tokens) if tokens else "UNKNOWN"
def _get_plate(self, img, h_img, w_img, vehicle_box):
x1, y1, x2, y2 = map(int, vehicle_box)
bw, bh = x2 - x1, y2 - y1
vcrop = img[
max(0, int(y1 - 0.20 * bh)): min(h_img, int(y2 + 0.10 * bh)),
max(0, int(x1 - 0.15 * bw)): min(w_img, int(x2 + 0.15 * bw))
]
plate_text = "UNKNOWN"
try:
if vcrop.size > 0:
p_res = self.s4.predict(vcrop, conf=S4_CONF, verbose=False)[0]
if len(p_res.boxes) > 0:
best_pb = p_res.boxes.xyxy.cpu().numpy()[p_res.boxes.conf.argmax()]
plate_text = self._extract_plate(vcrop, best_pb)
except Exception:
pass
return plate_text
# ββ predict βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def predict(self, image_path: str) -> dict:
try:
img = cv2.imread(str(image_path))
if img is None:
return {"violations": []}
h_img, w_img = img.shape[:2]
# Stage 1: COCO primary detection
coco_res = self.s_coco.predict(img, conf=COCO_CONF, iou=COCO_IOU,
verbose=False)[0]
coco_boxes = coco_res.boxes.xyxy.cpu().numpy()
coco_cls = coco_res.boxes.cls.cpu().numpy().astype(int)
person_boxes = coco_boxes[coco_cls == COCO_PERSON].tolist()
coco_motos = coco_boxes[coco_cls == COCO_MOTO].tolist()
coco_cars = coco_boxes[np.isin(coco_cls, list(FOUR_WHEELERS))].tolist()
# Stage 2: Supplemental bike detector
s1_res = self.s1.predict(img, conf=S1_CONF, iou=S1_IOU,
augment=True, verbose=False)[0]
custom_bikes = s1_res.boxes.xyxy.cpu().numpy().tolist()
bike_boxes = self._merge_bike_boxes(coco_motos, custom_bikes)
# Stage 3: Depth map for spatial personβbike association
depth_map = self._get_depth_map(img)
# Stage 4: Associate persons to bikes
bike_persons = self._associate_persons_to_bikes(
person_boxes, bike_boxes, depth_map, h_img, w_img)
# Detect Wrong Way using Roboflow API
ww_boxes = []
try:
result = _roboflow_infer(img, "wrong-way-driving-detection-gqdmg/1")
for pred in result.get('predictions', []):
if "wrong" in pred.get('class', '').lower():
px, py, pw, ph = pred['x'], pred['y'], pred['width'], pred['height']
wx1, wy1 = px - pw/2, py - ph/2
wx2, wy2 = px + pw/2, py + ph/2
ww_boxes.append([wx1, wy1, wx2, wy2])
except Exception as e:
print("[Warning] Wrong-way API error:", e)
def is_wrong_way(v_box):
for wb in ww_boxes:
if self._box_iou(v_box, wb) > 0.4:
return True
return False
violations = []
# Process Two-wheelers
for i, bike_box in enumerate(bike_boxes):
num_riders, with_h, without_h = self._classify_helmets(
img, bike_persons[i])
if num_riders == 0:
num_riders, with_h, without_h = 1, 0, 1
ww = is_wrong_way(bike_box)
# Check for violation first, then do plate OCR if violation exists
if (num_riders >= 3) or (without_h > 0) or ww:
plate_text = self._get_plate(img, h_img, w_img, bike_box)
violations.append({
"vehicle_type": "two_wheeler",
"num_riders": num_riders,
"helmet_violations": without_h,
"wrong_way": ww,
"license_plate": plate_text,
})
# Process Four-wheelers (Cars/Trucks/Buses)
for car_box in coco_cars:
x1, y1, x2, y2 = map(int, car_box)
ww = is_wrong_way(car_box)
sb_viols = 0
ccrop = img[max(0, y1):min(h_img, y2), max(0, x1):min(w_img, x2)]
if ccrop.size > 0:
try:
res = _roboflow_infer(ccrop, "seat-belt-detection-udcfg/5")
for pred in res.get('predictions', []):
cls_name = pred.get('class', '').lower()
if "no" in cls_name and "seatbelt" in cls_name:
sb_viols += 1
except Exception as e:
print("[Warning] Seatbelt API error:", e)
# Check for violation first, then do plate OCR if violation exists
if sb_viols > 0 or ww:
plate_text = self._get_plate(img, h_img, w_img, car_box)
violations.append({
"vehicle_type": "four_wheeler",
"seatbelt_violations": sb_viols,
"wrong_way": ww,
"license_plate": plate_text
})
return {"violations": violations}
except Exception as e:
print(f"[ERROR] predict() failed for {image_path}: {e}")
return {"violations": []}
|