File size: 17,279 Bytes
fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d 1925f28 a3abb2d 1925f28 a3abb2d 1925f28 a3abb2d 1925f28 a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a a3abb2d fb4ca0a | 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 | from __future__ import annotations
from dataclasses import dataclass
from pathlib import Path
from typing import Any
import cv2
import numpy as np
from core.config import settings
from core.logger import logger
try:
from ultralytics import YOLO
except Exception: # pragma: no cover - optional import guard
YOLO = None
@dataclass(frozen=True)
class SurfaceGateResult:
is_steel: bool
confidence: float
mode: str
label: str
reason: str
metrics: dict[str, float]
roi_bbox: tuple[int, int, int, int] | None = None
roi_area_ratio: float | None = None
def to_metadata(self) -> dict[str, Any]:
return {
"passed": self.is_steel,
"confidence": round(self.confidence, 3),
"mode": self.mode,
"label": self.label,
"reason": self.reason,
"metrics": self.metrics,
"roi_bbox": list(self.roi_bbox) if self.roi_bbox else None,
"roi_area_ratio": round(self.roi_area_ratio, 4) if self.roi_area_ratio is not None else None,
}
class SteelSurfaceGate:
def __init__(self) -> None:
self.detector_model = self._load_model(settings.SURFACE_DETECTOR_PATH, "detector")
self.classifier_model = self._load_model(settings.SURFACE_CLASSIFIER_PATH, "classifier")
def _load_model(self, model_path: str | None, kind: str):
if not model_path:
return None
resolved_path = Path(model_path)
if not resolved_path.exists():
logger.warning("Surface %s path does not exist: %s", kind, resolved_path)
return None
if YOLO is None:
logger.warning("Ultralytics is unavailable for the surface %s model", kind)
return None
try:
model = YOLO(str(resolved_path))
logger.info("Surface %s model loaded from: %s", kind, resolved_path)
return model
except Exception as exc: # pragma: no cover - defensive runtime fallback
logger.warning("Surface %s model failed to load: %s", kind, exc)
return None
def evaluate(self, image: np.ndarray) -> SurfaceGateResult:
if self.detector_model is not None:
return self._evaluate_with_detector(image)
if self.classifier_model is not None:
return self._evaluate_with_classifier(image)
return self._evaluate_with_heuristic(image)
def _evaluate_with_detector(self, image: np.ndarray) -> SurfaceGateResult:
results = self.detector_model(
image,
conf=settings.SURFACE_DETECTOR_CONFIDENCE,
imgsz=settings.SURFACE_DETECTOR_IMAGE_SIZE,
verbose=False,
)
result = results[0]
boxes = getattr(result, "boxes", None)
names = getattr(result, "names", None) or getattr(self.detector_model, "names", {})
if boxes is None or len(boxes) == 0:
return SurfaceGateResult(
is_steel=False,
confidence=0.99,
mode="detector",
label="non_steel",
reason=(
"Frame skipped because no steel-surface region was localized. Aim the camera closer to the sheet or coil."
),
metrics={"boxes_detected": 0.0},
)
height, width = image.shape[:2]
image_area = max(height * width, 1)
candidates: list[dict[str, float | tuple[int, int, int, int] | str]] = []
for raw_box in boxes:
xyxy = raw_box.xyxy[0].tolist()
x1, y1, x2, y2 = [int(round(value)) for value in xyxy]
x1 = max(0, min(x1, width - 1))
y1 = max(0, min(y1, height - 1))
x2 = max(x1 + 1, min(x2, width))
y2 = max(y1 + 1, min(y2, height))
box_width = x2 - x1
box_height = y2 - y1
area_ratio = (box_width * box_height) / image_area
cls_tensor = getattr(raw_box, "cls", None)
cls_index = int(cls_tensor[0].item()) if cls_tensor is not None else 0
label = self._resolve_label(names, cls_index)
confidence = float(raw_box.conf[0].item())
if not self._detector_label_matches(label, cls_index, names):
continue
expand_ratio = settings.SURFACE_DETECTOR_EXPAND_RATIO
pad_x = int(box_width * expand_ratio)
pad_y = int(box_height * expand_ratio)
expanded_x1 = max(0, x1 - pad_x)
expanded_y1 = max(0, y1 - pad_y)
expanded_x2 = min(width, x2 + pad_x)
expanded_y2 = min(height, y2 + pad_y)
expanded_bbox = (
expanded_x1,
expanded_y1,
expanded_x2 - expanded_x1,
expanded_y2 - expanded_y1,
)
expanded_area_ratio = (expanded_bbox[2] * expanded_bbox[3]) / image_area
selector_score = (confidence * 0.8) + (min(expanded_area_ratio / 0.55, 1.0) * 0.2)
candidates.append(
{
"confidence": confidence,
"label": label,
"bbox": expanded_bbox,
"area_ratio": expanded_area_ratio,
"selector_score": selector_score,
}
)
if not candidates:
return SurfaceGateResult(
is_steel=False,
confidence=0.99,
mode="detector",
label="non_steel",
reason=(
"Frame skipped because the localized objects did not match the expected steel-surface class."
),
metrics={"boxes_detected": float(len(boxes))},
)
best_candidate = max(
candidates,
key=lambda candidate: (
float(candidate["selector_score"]),
float(candidate["confidence"]),
float(candidate["area_ratio"]),
),
)
roi_area_ratio = float(best_candidate["area_ratio"])
if roi_area_ratio < settings.SURFACE_DETECTOR_MIN_AREA_RATIO:
return SurfaceGateResult(
is_steel=False,
confidence=float(best_candidate["confidence"]),
mode="detector",
label=str(best_candidate["label"]),
reason=(
"Frame skipped because the localized steel region is too small for reliable defect inspection. Move closer to the material."
),
metrics={
"boxes_detected": float(len(candidates)),
"roi_area_ratio": round(roi_area_ratio, 4),
},
roi_bbox=best_candidate["bbox"],
roi_area_ratio=roi_area_ratio,
)
roi_x, roi_y, roi_width, roi_height = best_candidate["bbox"]
roi_image = image[roi_y:roi_y + roi_height, roi_x:roi_x + roi_width]
heuristic_result = self._evaluate_with_heuristic(roi_image)
if not heuristic_result.is_steel:
return SurfaceGateResult(
is_steel=False,
confidence=float(best_candidate["confidence"]),
mode="detector+heuristic",
label=str(best_candidate["label"]),
reason=(
"Frame skipped because the localized ROI did not pass the steel-surface texture validation step. "
"Reduce background content and center the actual material."
),
metrics={
"boxes_detected": float(len(candidates)),
"roi_area_ratio": round(roi_area_ratio, 4),
"selector_score": round(float(best_candidate["selector_score"]), 4),
**heuristic_result.metrics,
},
roi_bbox=best_candidate["bbox"],
roi_area_ratio=roi_area_ratio,
)
return SurfaceGateResult(
is_steel=True,
confidence=float(best_candidate["confidence"]),
mode="detector+heuristic",
label=str(best_candidate["label"]),
reason=(
f"Steel-surface detector localized an inspection ROI with {float(best_candidate['confidence']):.0%} confidence, "
"and the ROI passed surface-texture validation."
),
metrics={
"boxes_detected": float(len(candidates)),
"roi_area_ratio": round(roi_area_ratio, 4),
"selector_score": round(float(best_candidate["selector_score"]), 4),
**heuristic_result.metrics,
},
roi_bbox=best_candidate["bbox"],
roi_area_ratio=roi_area_ratio,
)
def _evaluate_with_classifier(self, image: np.ndarray) -> SurfaceGateResult:
results = self.classifier_model(image, verbose=False)
result = results[0]
probs = getattr(result, "probs", None)
names = getattr(result, "names", None) or getattr(self.classifier_model, "names", {})
if probs is None:
raise RuntimeError("Classification model returned no probabilities")
top_index = int(getattr(probs, "top1", 0))
top_confidence_raw = getattr(probs, "top1conf")
top_confidence = float(
top_confidence_raw.item() if hasattr(top_confidence_raw, "item") else top_confidence_raw
)
label = self._resolve_label(names, top_index)
steel_label = settings.SURFACE_CLASSIFIER_STEEL_LABEL.strip().lower()
normalized_label = label.strip().lower()
is_steel = (
normalized_label == steel_label
or steel_label in normalized_label
or normalized_label in steel_label
)
meets_threshold = top_confidence >= settings.SURFACE_MIN_STEEL_CONFIDENCE
if is_steel and meets_threshold:
reason = (
f"Steel surface classifier accepted the frame with {top_confidence:.0%} confidence."
)
elif is_steel:
reason = (
"Frame resembles steel, but the classifier confidence is too low for reliable defect analysis."
)
else:
reason = (
f'Classifier labeled the frame as "{label}" instead of steel, so the defect model was skipped.'
)
return SurfaceGateResult(
is_steel=bool(is_steel and meets_threshold),
confidence=top_confidence,
mode="classifier",
label=label,
reason=reason,
metrics={},
roi_bbox=(0, 0, image.shape[1], image.shape[0]) if is_steel and meets_threshold else None,
roi_area_ratio=1.0 if is_steel and meets_threshold else None,
)
def _evaluate_with_heuristic(self, image: np.ndarray) -> SurfaceGateResult:
features = self._extract_features(image)
checks = {
"gray_ratio": features["gray_ratio"] >= settings.SURFACE_MIN_GRAY_RATIO,
"low_sat_ratio": features["low_saturation_ratio"] >= settings.SURFACE_MIN_LOW_SAT_RATIO,
"mean_saturation": features["mean_saturation"] <= settings.SURFACE_MAX_MEAN_SATURATION,
"colorfulness": features["colorfulness"] <= settings.SURFACE_MAX_COLORFULNESS,
"skin_ratio": features["skin_ratio"] <= settings.SURFACE_MAX_SKIN_RATIO,
"texture_variance": features["texture_variance"] >= settings.SURFACE_MIN_TEXTURE_VARIANCE,
}
weights = {
"gray_ratio": 0.24,
"low_sat_ratio": 0.22,
"mean_saturation": 0.16,
"colorfulness": 0.16,
"skin_ratio": 0.12,
"texture_variance": 0.10,
}
score = sum(weights[name] for name, passed in checks.items() if passed)
chroma_gate = checks["gray_ratio"] and checks["low_sat_ratio"]
is_steel = score >= 0.72 and chroma_gate and checks["skin_ratio"]
failed_checks = [name for name, passed in checks.items() if not passed]
confidence = score if is_steel else min(0.99, max(0.55, 1.0 - score + 0.08 * len(failed_checks)))
if is_steel:
reason = (
f"Frame passed the steel-surface gate with {confidence:.0%} confidence and proceeded to defect segmentation."
)
else:
reason = self._build_failure_reason(features, failed_checks)
return SurfaceGateResult(
is_steel=is_steel,
confidence=confidence,
mode="heuristic",
label="steel" if is_steel else "non_steel",
reason=reason,
metrics={key: round(value, 4) for key, value in features.items()},
roi_bbox=(0, 0, image.shape[1], image.shape[0]) if is_steel else None,
roi_area_ratio=1.0 if is_steel else None,
)
def _resolve_label(self, names: Any, index: int) -> str:
if isinstance(names, dict):
return str(names.get(index, index))
if isinstance(names, list) and 0 <= index < len(names):
return str(names[index])
return str(index)
def _detector_label_matches(self, label: str, cls_index: int, names: Any) -> bool:
target = settings.SURFACE_DETECTOR_CLASS_NAME.strip().lower()
normalized_label = label.strip().lower()
if not target:
return True
if normalized_label == target or target in normalized_label or normalized_label in target:
return True
if isinstance(names, dict) and len(names) == 1 and cls_index == 0:
return True
if isinstance(names, list) and len(names) == 1 and cls_index == 0:
return True
return False
def _extract_features(self, image: np.ndarray) -> dict[str, float]:
height, width = image.shape[:2]
target_width = min(320, max(96, width))
target_height = max(96, int(height * target_width / max(width, 1)))
resized = cv2.resize(image, (target_width, target_height))
hsv = cv2.cvtColor(resized, cv2.COLOR_BGR2HSV)
gray = cv2.cvtColor(resized, cv2.COLOR_BGR2GRAY)
ycrcb = cv2.cvtColor(resized, cv2.COLOR_BGR2YCrCb)
b_channel, g_channel, r_channel = [channel.astype(np.float32) for channel in cv2.split(resized)]
saturation = hsv[:, :, 1].astype(np.float32)
gray_delta = settings.SURFACE_GRAY_DELTA
gray_mask = (
(np.abs(r_channel - g_channel) <= gray_delta)
& (np.abs(r_channel - b_channel) <= gray_delta)
& (np.abs(g_channel - b_channel) <= gray_delta)
)
rg = np.abs(r_channel - g_channel)
yb = np.abs(0.5 * (r_channel + g_channel) - b_channel)
colorfulness = (
np.sqrt(float(rg.std()) ** 2 + float(yb.std()) ** 2)
+ 0.3 * np.sqrt(float(rg.mean()) ** 2 + float(yb.mean()) ** 2)
)
luminance, cr_channel, cb_channel = cv2.split(ycrcb)
skin_mask = (
(cr_channel > 135)
& (cr_channel < 180)
& (cb_channel > 85)
& (cb_channel < 135)
& (luminance > 60)
)
return {
"gray_ratio": float(gray_mask.mean()),
"low_saturation_ratio": float(
(saturation <= settings.SURFACE_LOW_SAT_PIXEL_THRESHOLD).mean()
),
"mean_saturation": float(saturation.mean()),
"colorfulness": float(colorfulness),
"skin_ratio": float(skin_mask.mean()),
"texture_variance": float(cv2.Laplacian(gray, cv2.CV_32F).var()),
}
def _build_failure_reason(self, features: dict[str, float], failed_checks: list[str]) -> str:
if features["skin_ratio"] > settings.SURFACE_MAX_SKIN_RATIO:
return (
"Frame skipped because prominent skin-tone regions were detected. Aim the camera only at the steel surface."
)
if features["gray_ratio"] < settings.SURFACE_MIN_GRAY_RATIO:
return (
"Frame skipped because it contains too much color variation to match the expected steel surface appearance."
)
if features["low_saturation_ratio"] < settings.SURFACE_MIN_LOW_SAT_RATIO:
return (
"Frame skipped because the image is too saturated. Move closer to the metal surface and reduce background content."
)
if features["texture_variance"] < settings.SURFACE_MIN_TEXTURE_VARIANCE:
return (
"Frame skipped because the visible area is too flat or out of focus for reliable steel-surface validation."
)
if features["colorfulness"] > settings.SURFACE_MAX_COLORFULNESS:
return (
"Frame skipped because the scene looks like a general object view instead of a steel inspection close-up."
)
failed_text = ", ".join(failed_checks) if failed_checks else "multiple surface validation checks"
return (
f"Frame skipped because it did not pass the steel-surface gate ({failed_text}). Reposition the camera toward the material and retry."
)
|