Spaces:
Sleeping
Sleeping
File size: 23,683 Bytes
03c4042 a467a79 03c4042 a467a79 03c4042 3c7c247 03c4042 a467a79 03c4042 871bbe6 bf6ac6d 871bbe6 a467a79 03c4042 a467a79 03c4042 713c1ee 03c4042 a467a79 03c4042 a467a79 3c7c247 03c4042 a467a79 03c4042 a467a79 03c4042 a467a79 1e13785 a467a79 1e13785 a467a79 1e13785 a467a79 1e13785 a467a79 1e13785 03c4042 a467a79 03c4042 a467a79 1e13785 a467a79 03c4042 9363b95 a467a79 9363b95 03c4042 a467a79 9363b95 03c4042 a467a79 03c4042 a467a79 03c4042 a467a79 03c4042 a467a79 03c4042 713c1ee 03c4042 a467a79 03c4042 3c7c247 e75f322 3c7c247 e75f322 3c7c247 e75f322 3c7c247 03c4042 a467a79 03c4042 | 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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 | """
Outdoor Detection & Face Recognition REST API β HuggingFace Spaces Edition
Endpoints:
POST /pipeline download β enhance β detect β recognize
POST /enrol register a named face identity (in-memory)
DELETE /enrol/{id} remove a registered identity
GET /health service status
Spring Boot sends JSON with snake_case keys (Jackson SNAKE_CASE strategy):
/pipeline {"image_url": "https://...", "condition": "foggy|rainy|low-light|clear|auto"}
/enrol {"name": "Alice", "image_url": "https://..."}
HuggingFace Space env vars (Settings β Variables and secrets):
HF_MODEL_REPO your HF model repo, e.g. "ibmuhd557/cv-thesis-models"
HF_TOKEN HF read token (only needed if repo is private)
INTERNAL_TOKEN must match Spring Boot INFERENCE_TOKEN
PROJECT_DIR override model cache path (default /app/models)
"""
import base64, os, shutil, subprocess, tempfile, time, uuid
from typing import Optional
import cv2
import numpy as np
import requests as _requests
from fastapi import FastAPI, Header, HTTPException
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI(title="CV Thesis Inference API")
app.add_middleware(CORSMiddleware, allow_origins=["*"],
allow_methods=["*"], allow_headers=["*"])
# ββ global model handles ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
detector = None
detector_fmt = None
face_app = None
enhance_zero = None # Zero-DCE++ (low-light)
enhance_ffa = None # FFA-Net (fog)
_gallery: dict[str, dict] = {} # embedding_id β {name, embedding}
INTERNAL_TOKEN = os.environ.get("INTERNALTOKEN", "thesissecret2026")
HF_REPO = "IbProgrammmer/cv-thesis-models"
HF_TOKEN = os.environ.get("HFTOKEN", "")
MODELS = "/tmp/models" # /tmp is always writable by any user
# ββ HF Hub model manifest βββββββββββββββββββββββββββββββββββββββββββββββββββββ
# filename in HF repo β local path under MODELS/
HF_MODELS = {
# Detection (pick the best available at startup)
"yolov8n_best.onnx": "yolov8n_best.onnx",
"yolov8n_outdoor_aug_best.pt": "yolov8n_outdoor_aug_best.pt",
"yolov8n_baseline_best.pt": "yolov8n_baseline_best.pt",
"rtdetr_outdoor_aug_best.pt": "rtdetr_outdoor_aug_best.pt",
"yolov8n_int8.onnx": "yolov8n_int8.onnx",
# Enhancement
"zero_dce_pp.pth": "zero_dce_pp.pth",
"ffa_net_outdoor.pk": "ffa_net_outdoor.pk",
# Restormer is already on HF Hub at deepinv/Restormer β downloaded separately
}
# ββ helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _download(url: str) -> np.ndarray:
if url.startswith("data:"):
encoded = url.split(",", 1)[1]
data = base64.b64decode(encoded)
arr = np.frombuffer(data, np.uint8)
else:
resp = _requests.get(url, timeout=20)
resp.raise_for_status()
arr = np.frombuffer(resp.content, np.uint8)
img = cv2.imdecode(arr, cv2.IMREAD_COLOR)
if img is None:
raise ValueError("imdecode returned None")
return img
def _xyxy_to_xywh(coords) -> dict:
x1, y1, x2, y2 = [float(v) for v in coords]
return {"x": round(x1, 1), "y": round(y1, 1),
"w": round(x2 - x1, 1), "h": round(y2 - y1, 1)}
def _draw_boxes(frame: np.ndarray, detections: list, recognitions: list) -> np.ndarray:
out = frame.copy()
for d in detections:
b = d["bbox"]
x, y, w, h = int(b["x"]), int(b["y"]), int(b["w"]), int(b["h"])
cv2.rectangle(out, (x, y), (x + w, y + h), (0, 200, 0), 2)
label = f"{d['class']} {d['confidence']:.0%}"
cv2.putText(out, label, (x, max(y - 6, 12)),
cv2.FONT_HERSHEY_SIMPLEX, 0.55, (0, 200, 0), 1, cv2.LINE_AA)
for r in recognitions:
b = r["bbox"]
x, y, w, h = int(b["x"]), int(b["y"]), int(b["w"]), int(b["h"])
cv2.rectangle(out, (x, y), (x + w, y + h), (255, 80, 0), 2)
label = f"{r['identity']} {r['confidence']:.0%}"
cv2.putText(out, label, (x, max(y - 6, 12)),
cv2.FONT_HERSHEY_SIMPLEX, 0.55, (255, 80, 0), 1, cv2.LINE_AA)
return out
def _to_data_uri(img_bgr: np.ndarray) -> str:
_, buf = cv2.imencode(".jpg", img_bgr, [cv2.IMWRITE_JPEG_QUALITY, 80])
return "data:image/jpeg;base64," + base64.b64encode(buf.tobytes()).decode()
def _clahe(img_bgr: np.ndarray) -> np.ndarray:
lab = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2LAB)
l, a, b = cv2.split(lab)
l = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8, 8)).apply(l)
return cv2.cvtColor(cv2.merge([l, a, b]), cv2.COLOR_LAB2BGR)
def _match(embedding: np.ndarray, threshold: float = 0.4):
if not _gallery:
return "unknown", "unknown", 0.0
q = embedding / (np.linalg.norm(embedding) + 1e-9)
best_id, best_name, best_sim = "unknown", "unknown", 0.0
for eid, entry in _gallery.items():
ref = entry["embedding"]
sim = float(np.dot(q, ref / (np.linalg.norm(ref) + 1e-9)))
if sim > best_sim:
best_sim, best_id, best_name = sim, eid, entry["name"]
if best_sim < threshold:
return "unknown", "unknown", round(best_sim, 4)
return best_name, best_id, round(best_sim, 4)
# ββ model download from HF Hub ββββββββββββββββββββββββββββββββββββββββββββββββ
def _pull_from_hub():
"""Download all models from HF Hub into MODELS dir on first boot."""
if not HF_REPO:
print("[startup] HF_MODEL_REPO not set β using pre-baked or pretrained models only")
return
try:
from huggingface_hub import hf_hub_download
except ImportError:
print("[startup] huggingface_hub not installed β skipping Hub download")
return
os.makedirs(MODELS, exist_ok=True)
token = HF_TOKEN or None
for hf_filename, local_name in HF_MODELS.items():
dest = os.path.join(MODELS, local_name)
if os.path.exists(dest):
print(f"[hub] cached {local_name}")
continue
try:
hf_hub_download(
repo_id=HF_REPO, filename=hf_filename,
token=token, local_dir=MODELS,
)
# hf_hub_download saves with the hf_filename; rename if different
downloaded = os.path.join(MODELS, hf_filename)
if downloaded != dest and os.path.exists(downloaded):
os.rename(downloaded, dest)
print(f"[hub] downloaded {local_name} ({os.path.getsize(dest)//1024} KB)")
except Exception as e:
print(f"[hub] skip {hf_filename}: {e}")
# Restormer: already on public HF Hub at deepinv/Restormer
rest_dest = os.path.join(MODELS, "restormer_deraining.pth")
if not os.path.exists(rest_dest):
try:
from huggingface_hub import hf_hub_download
p = hf_hub_download(
repo_id="deepinv/Restormer",
filename="deraining.pth",
local_dir=MODELS,
)
os.rename(p, rest_dest)
print(f"[hub] downloaded restormer_deraining.pth ({os.path.getsize(rest_dest)//1024} KB)")
except Exception as e:
print(f"[hub] Restormer skip: {e}")
# ββ enhancement loaders βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _load_zero_dce(weights_path: str):
"""Load Zero-DCE++ for low-light enhancement. Requires torch."""
try:
import torch
import torch.nn as nn
class _DCENet(nn.Module):
def __init__(self):
super().__init__()
self.relu = nn.ReLU(inplace=True)
n = 32
self.e_conv1 = nn.Conv2d(3, n, 3, 1, 1, bias=True)
self.e_conv2 = nn.Conv2d(n, n, 3, 1, 1, bias=True)
self.e_conv3 = nn.Conv2d(n, n, 3, 1, 1, bias=True)
self.e_conv4 = nn.Conv2d(n, n, 3, 1, 1, bias=True)
self.e_conv5 = nn.Conv2d(n * 2, n, 3, 1, 1, bias=True)
self.e_conv6 = nn.Conv2d(n * 2, n, 3, 1, 1, bias=True)
self.e_conv7 = nn.Conv2d(n * 2, 24, 3, 1, 1, bias=True)
def forward(self, x):
x1 = self.relu(self.e_conv1(x))
x2 = self.relu(self.e_conv2(x1))
x3 = self.relu(self.e_conv3(x2))
x4 = self.relu(self.e_conv4(x3))
x5 = self.relu(self.e_conv5(torch.cat([x3, x4], 1)))
x6 = self.relu(self.e_conv6(torch.cat([x2, x5], 1)))
x_r = torch.tanh(self.e_conv7(torch.cat([x1, x6], 1)))
r = torch.split(x_r, 3, dim=1)
out = x
for ri in r:
out = out + ri * (1 - out)
return out
net = _DCENet()
ckpt = torch.load(weights_path, map_location="cpu", weights_only=False)
state = ckpt.get("state_dict", ckpt)
net.load_state_dict(state, strict=False)
net.eval()
print(f"[startup] Zero-DCE++ loaded: {weights_path}")
return net
except Exception as e:
print(f"[startup] Zero-DCE++ not loaded ({e}) β using CLAHE fallback")
return None
def _load_ffa(weights_path: str):
"""Load FFA-Net for dehazing. Requires torch."""
try:
import torch
import pickle
with open(weights_path, "rb") as f:
net = pickle.load(f)
net.eval()
print(f"[startup] FFA-Net loaded: {weights_path}")
return net
except Exception as e:
print(f"[startup] FFA-Net not loaded ({e}) β using CLAHE fallback")
return None
def _enhance(img_bgr: np.ndarray, condition: str) -> tuple[np.ndarray, str]:
"""Route enhancement by weather condition. Returns (enhanced_bgr, route_label)."""
try:
import torch
if condition in ("low-light",) and enhance_zero is not None:
rgb = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2RGB).astype(np.float32) / 255.0
t = torch.from_numpy(rgb.transpose(2, 0, 1)).unsqueeze(0)
with torch.no_grad():
out = enhance_zero(t).squeeze(0).permute(1, 2, 0).numpy()
return cv2.cvtColor((out * 255).clip(0, 255).astype(np.uint8),
cv2.COLOR_RGB2BGR), "low_light:zero_dce++"
if condition in ("foggy",) and enhance_ffa is not None:
rgb = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2RGB).astype(np.float32) / 255.0
t = torch.from_numpy(rgb.transpose(2, 0, 1)).unsqueeze(0)
with torch.no_grad():
out = enhance_ffa(t).squeeze(0).permute(1, 2, 0).numpy()
return cv2.cvtColor((out * 255).clip(0, 255).astype(np.uint8),
cv2.COLOR_RGB2BGR), "fog:ffa_net"
except ImportError:
pass # torch not installed β fall through to CLAHE
# CLAHE fallback for all conditions (also used when condition="clear" or "auto")
return _clahe(img_bgr), f"{condition}:clahe"
# ββ startup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.on_event("startup")
async def startup():
global detector, detector_fmt, face_app, enhance_zero, enhance_ffa
_pull_from_hub()
# ββ detector (prefer ONNX, fallback to .pt, fallback to pretrained) ββββββ
try:
from ultralytics import YOLO
candidates = [
(f"{MODELS}/yolov8n_best.onnx", "onnx"),
(f"{MODELS}/yolov8n_int8.onnx", "onnx_int8"),
(f"{MODELS}/yolov8n_outdoor_aug_best.pt", "pytorch_aug"),
(f"{MODELS}/yolov8n_baseline_best.pt", "pytorch_baseline"),
(f"{MODELS}/rtdetr_outdoor_aug_best.pt", "rtdetr"),
]
for path, fmt in candidates:
if os.path.exists(path):
detector = YOLO(path)
detector_fmt = fmt
print(f"[startup] Detector: {os.path.basename(path)} [{fmt}]")
break
if detector is None:
# pretrained fallback β YOLO auto-downloads yolov8n.pt on first call
detector = YOLO("yolov8n.pt")
detector_fmt = "pytorch_pretrained"
print("[startup] Detector: yolov8n.pt [pytorch_pretrained] (auto-downloaded)")
except Exception as e:
print(f"[startup] Detector load failed: {e}")
# ββ face analyzer (buffalo_l auto-downloads from InsightFace CDN) βββββββββ
try:
from insightface.app import FaceAnalysis
face_app = FaceAnalysis(name="buffalo_l",
providers=["CPUExecutionProvider"])
face_app.prepare(ctx_id=-1, det_size=(640, 640))
print("[startup] Face analyzer: SCRFD-10GF + ArcFace w600k_r50 (CPU)")
except Exception as e:
print(f"[startup] Face analyzer load failed: {e}")
# ββ enhancement models (optional β requires torch) ββββββββββββββββββββββββ
zdce_path = f"{MODELS}/zero_dce_pp.pth"
if os.path.exists(zdce_path):
enhance_zero = _load_zero_dce(zdce_path)
ffa_path = f"{MODELS}/ffa_net_outdoor.pk"
if os.path.exists(ffa_path):
enhance_ffa = _load_ffa(ffa_path)
if enhance_zero is None and enhance_ffa is None:
print("[startup] No enhancement models loaded β CLAHE used for all conditions")
# ββ endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/pipeline")
async def pipeline(body: dict,
x_internal_token: Optional[str] = Header(None)):
t_total = time.time()
image_url = body.get("image_url")
condition = body.get("condition", "auto")
if not image_url:
raise HTTPException(status_code=400, detail="image_url is required")
try:
img = _download(image_url)
except Exception as e:
raise HTTPException(status_code=400, detail=f"Cannot download image: {e}")
h, w = img.shape[:2]
t0 = time.time()
enhanced, enh_route = _enhance(img, condition)
enh_ms = (time.time() - t0) * 1000
t0 = time.time()
detections = []
if detector:
for r in detector(enhanced, verbose=False, conf=0.45, iou=0.45):
for box in r.boxes:
detections.append({
"class": r.names[int(box.cls)],
"confidence": round(float(box.conf), 4),
"bbox": _xyxy_to_xywh(box.xyxy[0].tolist()),
})
det_ms = (time.time() - t0) * 1000
t0 = time.time()
recognitions = []
if face_app:
for face in face_app.get(enhanced):
name, eid, conf = _match(face.embedding)
recognitions.append({
"identity": name,
"identity_id": eid,
"confidence": conf,
"bbox": _xyxy_to_xywh(face.bbox.tolist()),
})
rec_ms = (time.time() - t0) * 1000
total_ms = (time.time() - t_total) * 1000
return {
"detections": detections,
"recognitions": recognitions,
"enhanced_image_url": _to_data_uri(enhanced),
"enhancement_route": enh_route,
"condition": condition,
"latency_ms": {
"enhancement": round(enh_ms, 1),
"detection": round(det_ms, 1),
"recognition": round(rec_ms, 1),
"total": round(total_ms, 1),
},
"image_width": w,
"image_height": h,
}
MAX_VIDEO_SECONDS = 60 # hard cap β stop reading frames beyond this
SAMPLE_EVERY = 4 # run inference on every Nth frame; apply boxes to all
@app.post("/pipeline_video")
async def pipeline_video(body: dict,
x_internal_token: Optional[str] = Header(None)):
t_total = time.time()
video_b64 = body.get("video_b64")
condition = body.get("condition", "auto")
if not video_b64:
raise HTTPException(status_code=400, detail="video_b64 is required")
# ββ decode and write to temp file ββββββββββββββββββββββββββββββββββββββββ
tmp_dir = tempfile.mkdtemp(prefix="cv_vid_")
try:
raw = base64.b64decode(video_b64)
in_path = os.path.join(tmp_dir, "input.mp4")
out_path = os.path.join(tmp_dir, "annotated.mp4")
frm_dir = os.path.join(tmp_dir, "frames")
os.makedirs(frm_dir, exist_ok=True)
with open(in_path, "wb") as f:
f.write(raw)
cap = cv2.VideoCapture(in_path)
if not cap.isOpened():
raise HTTPException(status_code=400, detail="Cannot open video file")
fps = cap.get(cv2.CAP_PROP_FPS) or 25.0
width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
max_frames = int(MAX_VIDEO_SECONDS * fps)
enh_ms_total = det_ms_total = rec_ms_total = 0.0
frame_idx = 0
written = 0
last_dets = []
last_recs = []
all_dets = []
all_recs = []
enh_route = f"{condition}:clahe"
while frame_idx < max_frames:
ret, frame = cap.read()
if not ret:
break
if frame_idx % SAMPLE_EVERY == 0:
t0 = time.time()
enhanced, enh_route = _enhance(frame, condition)
enh_ms_total += (time.time() - t0) * 1000
t0 = time.time()
last_dets = []
if detector:
for r in detector(enhanced, verbose=False, conf=0.45, iou=0.45):
for box in r.boxes:
last_dets.append({
"class": r.names[int(box.cls)],
"confidence": round(float(box.conf), 4),
"bbox": _xyxy_to_xywh(box.xyxy[0].tolist()),
})
det_ms_total += (time.time() - t0) * 1000
t0 = time.time()
last_recs = []
if face_app:
for face in face_app.get(enhanced):
name, eid, conf = _match(face.embedding)
last_recs.append({
"identity": name,
"identity_id": eid,
"confidence": conf,
"bbox": _xyxy_to_xywh(face.bbox.tolist()),
})
rec_ms_total += (time.time() - t0) * 1000
all_dets.extend(last_dets)
all_recs.extend(last_recs)
annotated = _draw_boxes(frame, last_dets, last_recs)
cv2.imwrite(os.path.join(frm_dir, f"{written:06d}.jpg"), annotated,
[cv2.IMWRITE_JPEG_QUALITY, 88])
written += 1
frame_idx += 1
cap.release()
if written == 0:
raise HTTPException(status_code=400, detail="Video contained no readable frames")
# ββ assemble H264 MP4 with ffmpeg (preserve original audio) βββββββββ
subprocess.run([
"ffmpeg", "-y",
"-r", str(fps),
"-i", os.path.join(frm_dir, "%06d.jpg"), # annotated frames (video)
"-i", in_path, # original file (audio)
"-map", "0:v:0",
"-map", "1:a?", # copy audio track if present; '?' = optional
"-vcodec", "libx264",
"-pix_fmt", "yuv420p",
"-crf", "23",
"-preset", "fast",
"-c:a", "aac", # re-encode audio to AAC for max compatibility
"-shortest", # stop when shorter stream ends
out_path,
], check=True, capture_output=True)
with open(out_path, "rb") as f:
annotated_b64 = base64.b64encode(f.read()).decode()
n_sampled = max(frame_idx // SAMPLE_EVERY, 1)
total_ms = (time.time() - t_total) * 1000
# Deduplicate recognitions by identity for the summary list
seen_ids = set()
unique_recs = []
for rec in all_recs:
key = rec["identity"]
if key not in seen_ids:
seen_ids.add(key)
unique_recs.append(rec)
return {
"annotated_video_b64": annotated_b64,
"detections": all_dets,
"recognitions": unique_recs,
"enhancement_route": enh_route,
"condition": condition,
"latency_ms": {
"enhancement": round(enh_ms_total / n_sampled, 1),
"detection": round(det_ms_total / n_sampled, 1),
"recognition": round(rec_ms_total / n_sampled, 1),
"total": round(total_ms, 1),
},
"frame_count": written,
"video_width": width,
"video_height": height,
"media_type": "video",
}
finally:
shutil.rmtree(tmp_dir, ignore_errors=True)
@app.post("/enrol")
async def enrol(body: dict,
x_internal_token: Optional[str] = Header(None)):
if face_app is None:
raise HTTPException(status_code=503, detail="Face analyzer not loaded")
name = body.get("name")
image_url = body.get("image_url")
if not name or not image_url:
raise HTTPException(status_code=400, detail="name and image_url are required")
try:
img = _download(image_url)
except Exception as e:
raise HTTPException(status_code=400, detail=f"Cannot download image: {e}")
faces = face_app.get(img)
if not faces:
raise HTTPException(status_code=422, detail="No face detected in enrolment image")
emb = faces[0].embedding.astype(np.float32)
emb /= np.linalg.norm(emb) + 1e-9
eid = str(uuid.uuid4())
_gallery[eid] = {"name": name, "embedding": emb}
print(f"[enrol] {name} β {eid} (gallery: {len(_gallery)})")
return {"embedding_id": eid}
@app.delete("/enrol/{embedding_id}")
async def delete_enrol(embedding_id: str,
x_internal_token: Optional[str] = Header(None)):
_gallery.pop(embedding_id, None)
return {"status": "deleted", "embedding_id": embedding_id}
@app.get("/health")
async def health():
return {
"status": "ok",
"detector": detector is not None,
"detector_format": detector_fmt,
"face_app": face_app is not None,
"enhance_zero_dce": enhance_zero is not None,
"enhance_ffa_net": enhance_ffa is not None,
"gallery_size": len(_gallery),
}
|