Spaces:
Sleeping
Sleeping
File size: 12,800 Bytes
e327f0d | 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 | """
severity_classifier.py
Hasar siddet siniflandirma. Iki strateji destekler:
1. RuleBasedSeverity: maske alani + parca onemi + hasar tipi β skor β siddet
2. CNNSeverity: hasar bolgesini crop β YOLO-cls β siddet
Ensemble: ikisini kombine eder.
Kullanim:
# CNN egit
python severity_classifier.py train --data data/severity_yolo \\
--model yolo26n-cls --epochs 50
# Tek goruntu uzerinde test (her iki yontem)
python severity_classifier.py test \\
--image car.jpg \\
--damage_weights runs/.../damage_best.pt \\
--severity_weights runs/.../severity_best.pt
"""
import argparse
import json
from pathlib import Path
import cv2
import numpy as np
from ultralytics import YOLO
SEVERITY_LEVELS = ["hafif", "orta", "agir"]
# Parca onem katsayilari - hasarin gozukurlugu ve onarim maliyeti agirligi
# 1.0 = ortalama, daha yuksek = daha kritik
PART_IMPORTANCE = {
"front_bumper": 1.2,
"back_bumper": 1.1,
"hood": 1.4,
"front_glass": 1.6, # On cam ciddi
"back_glass": 1.3,
"front_left_door": 1.2,
"front_right_door": 1.2,
"back_left_door": 1.1,
"back_right_door": 1.1,
"front_left_light": 1.3,
"front_right_light": 1.3,
"back_left_light": 1.1,
"back_right_light": 1.1,
"front_light": 1.3,
"back_light": 1.1,
"left_mirror": 0.9,
"right_mirror": 0.9,
"tailgate": 1.2,
"trunk": 1.2,
"wheel": 1.0,
"unknown": 1.0,
}
# Hasar tipi agirligi - kac kat ciddidir
DAMAGE_TYPE_WEIGHT = {
"scratch": 0.6, # En hafif
"dent": 1.0, # Referans
"crack": 1.4, # Cizgisel, yayilir
"glass_shatter": 2.0, # Cam parcalanmasi = aliyo parca degisimi
"lamp_broken": 1.8, # Far kirilmasi
"tire_flat": 1.5, # Lastik
}
class RuleBasedSeverity:
"""Aciklanabilir, kural tabanli siddet skorlama.
score = area_ratio * part_importance * damage_type_weight * 100
Esikler:
score < 1.0 β hafif
1.0 β€ score < 4.0 β orta
score β₯ 4.0 β agir
"""
THRESHOLDS = [1.0, 4.0]
def predict(self, damage_type, part_name, area_ratio):
damage_w = DAMAGE_TYPE_WEIGHT.get(damage_type, 1.0)
part_w = PART_IMPORTANCE.get(part_name, 1.0)
score = area_ratio * 100.0 * damage_w * part_w
if score < self.THRESHOLDS[0]:
level = "hafif"
elif score < self.THRESHOLDS[1]:
level = "orta"
else:
level = "agir"
return {
"level": level,
"score": round(score, 4),
"confidence": min(1.0, score / 6.0 + 0.5), # heuristik
"method": "rule_based",
"components": {
"area_ratio": area_ratio,
"damage_weight": damage_w,
"part_weight": part_w,
},
}
class CNNSeverity:
"""CNN siddet siniflandirici.
Supports two checkpoint formats:
(a) Ultralytics YOLO-cls .pt (loaded with YOLO())
(b) Custom torchvision checkpoint dict from train_severity.py
with keys: model_state_dict, classes, tr_names, arch, img_size
"""
IMAGENET_MEAN = np.array([0.485, 0.456, 0.406], dtype=np.float32)
IMAGENET_STD = np.array([0.229, 0.224, 0.225], dtype=np.float32)
def __init__(self, weights_path):
import torch
self._torch = torch
self.weights_path = weights_path
self.kind = None # "yolo" or "torchvision"
self.model = None
self.device = "cuda" if torch.cuda.is_available() else "cpu"
self.img_size = 224
self.class_names = list(SEVERITY_LEVELS)
self._load(weights_path)
def _load(self, weights_path):
torch = self._torch
# Try torchvision-style checkpoint first
try:
ckpt = torch.load(weights_path, map_location="cpu", weights_only=False)
except Exception:
ckpt = None
if isinstance(ckpt, dict) and "model_state_dict" in ckpt:
self._load_torchvision(ckpt)
return
# Fall back to YOLO loader
self.model = YOLO(weights_path)
self.kind = "yolo"
def _load_torchvision(self, ckpt):
torch = self._torch
from torchvision.models import efficientnet_b0
import torch.nn as nn
arch = ckpt.get("arch", "efficientnet_b0")
if arch != "efficientnet_b0":
raise ValueError(f"Unsupported torchvision arch: {arch}")
model = efficientnet_b0(weights=None)
# Replace classifier head to match training (3 classes)
n_classes = len(ckpt.get("classes", SEVERITY_LEVELS))
in_features = model.classifier[1].in_features
model.classifier[1] = nn.Linear(in_features, n_classes)
model.load_state_dict(ckpt["model_state_dict"])
model.eval()
model.to(self.device)
self.model = model
self.kind = "torchvision"
self.img_size = int(ckpt.get("img_size", 224))
# Prefer Turkish labels (hafif/orta/agir); fall back to raw class names
self.class_names = list(ckpt.get("tr_names", ckpt.get("classes", SEVERITY_LEVELS)))
@staticmethod
def _bgr_to_normalized_tensor(image_crop, img_size: int):
import torch
rgb = cv2.cvtColor(image_crop, cv2.COLOR_BGR2RGB)
rgb = cv2.resize(rgb, (img_size, img_size), interpolation=cv2.INTER_AREA)
arr = rgb.astype(np.float32) / 255.0
arr = (arr - CNNSeverity.IMAGENET_MEAN) / CNNSeverity.IMAGENET_STD
arr = np.transpose(arr, (2, 0, 1)) # HWC -> CHW
return torch.from_numpy(arr).unsqueeze(0)
def predict(self, image_crop):
"""Tek bir BGR crop verir, en yuksek siddet sinifini dondur."""
if image_crop is None or image_crop.size == 0:
return {"level": "hafif", "confidence": 0.0, "method": "cnn_empty"}
if self.kind == "torchvision":
torch = self._torch
try:
x = self._bgr_to_normalized_tensor(image_crop, self.img_size).to(self.device)
with torch.inference_mode():
logits = self.model(x)
probs = torch.softmax(logits, dim=1)[0].cpu().numpy()
except Exception:
return {"level": "orta", "confidence": 0.0, "method": "cnn_failed"}
idx = int(np.argmax(probs))
cls_names = self.class_names
return {
"level": cls_names[idx],
"confidence": float(probs[idx]),
"method": "cnn_torchvision",
"all_probs": {cls_names[i]: float(p) for i, p in enumerate(probs)},
}
# YOLO-cls path
result = self.model.predict(image_crop, verbose=False)[0]
if not hasattr(result, "probs") or result.probs is None:
return {"level": "orta", "confidence": 0.0, "method": "cnn_failed"}
probs = result.probs.data.cpu().numpy()
idx = int(np.argmax(probs))
cls_names = list(self.model.names.values()) if hasattr(self.model, "names") else SEVERITY_LEVELS
return {
"level": cls_names[idx],
"confidence": float(probs[idx]),
"method": "cnn_yolo",
"all_probs": {cls_names[i]: float(p) for i, p in enumerate(probs)},
}
class EnsembleSeverity:
"""Hibrit: kural tabanli + CNN ensemble. CNN yoksa sadece kural."""
def __init__(self, cnn_weights=None, rule_weight=0.4, cnn_weight=0.6):
self.rule = RuleBasedSeverity()
self.cnn = CNNSeverity(cnn_weights) if cnn_weights else None
self.rule_weight = rule_weight
self.cnn_weight = cnn_weight
def predict(self, damage_type, part_name, area_ratio, image_crop=None):
rule_pred = self.rule.predict(damage_type, part_name, area_ratio)
if self.cnn is None or image_crop is None:
rule_pred["method"] = "rule_only"
return rule_pred
cnn_pred = self.cnn.predict(image_crop)
# Anlasma varsa kolay
if rule_pred["level"] == cnn_pred["level"]:
return {
"level": rule_pred["level"],
"confidence": max(rule_pred["confidence"], cnn_pred["confidence"]),
"method": "ensemble_agree",
"rule": rule_pred,
"cnn": cnn_pred,
}
# Catismada: agirlikli oyla
scores = {lvl: 0.0 for lvl in SEVERITY_LEVELS}
scores[rule_pred["level"]] += self.rule_weight * rule_pred["confidence"]
scores[cnn_pred["level"]] += self.cnn_weight * cnn_pred["confidence"]
if "all_probs" in cnn_pred:
for lvl, p in cnn_pred["all_probs"].items():
if lvl in scores:
scores[lvl] += 0.3 * p
best = max(scores, key=scores.get)
return {
"level": best,
"confidence": scores[best],
"method": "ensemble_resolved",
"rule": rule_pred,
"cnn": cnn_pred,
"ensemble_scores": scores,
}
def crop_damage(image, bbox, padding=0.15):
"""Bbox cevresinde padding'li crop dondur."""
h, w = image.shape[:2]
x1, y1, x2, y2 = bbox
bw, bh = x2 - x1, y2 - y1
px, py = int(bw * padding), int(bh * padding)
x1 = max(0, int(x1) - px)
y1 = max(0, int(y1) - py)
x2 = min(w, int(x2) + px)
y2 = min(h, int(y2) + py)
return image[y1:y2, x1:x2]
def cmd_train(args):
"""YOLO-cls ile siddet modeli egit."""
model = YOLO(f"{args.model}.pt")
model.train(
data=args.data,
epochs=args.epochs,
imgsz=args.imgsz,
batch=args.batch,
device=args.device,
optimizer="AdamW",
lr0=0.001,
weight_decay=0.0001,
patience=20,
plots=True,
project="runs/arac-hasar",
name=f"severity_{args.model}_ep{args.epochs}",
)
def cmd_test(args):
"""Tek goruntude tum siddet siniflandirma yontemlerini dene."""
image = cv2.imread(args.image)
if image is None:
raise FileNotFoundError(args.image)
# Hasar modeli ile bul
damage_model = YOLO(args.damage_weights)
results = damage_model.predict(image, verbose=False)[0]
if not results.boxes:
print("Hasar bulunamadi.")
return
ensemble = EnsembleSeverity(cnn_weights=args.severity_weights)
h, w = image.shape[:2]
output = []
for i, box in enumerate(results.boxes):
cls_id = int(box.cls.item())
damage_type = damage_model.names[cls_id]
bbox = box.xyxy[0].tolist()
# Alan orani: maske varsa maskeden, yoksa bbox'tan.
# results.masks.data is at the model's mask resolution (typ. 160x160
# or imgsz/4), so divide by the mask's own area for a consistent
# ratio. Bbox-based fallback divides by the full image area.
if results.masks is not None and i < len(results.masks.data):
mask_t = results.masks.data[i]
mh, mw = mask_t.shape[-2:]
area_pixels = float(mask_t.sum())
area_ratio = area_pixels / float(mh * mw) if (mh * mw) else 0.0
else:
area_pixels = (bbox[2] - bbox[0]) * (bbox[3] - bbox[1])
area_ratio = area_pixels / (h * w)
# Parca varsayalim "unknown" (parca pipeline'i pipeline.py'da entegre)
crop = crop_damage(image, bbox)
sev = ensemble.predict(damage_type, "unknown", area_ratio, crop)
output.append({
"damage_id": i,
"type": damage_type,
"area_ratio": round(area_ratio, 5),
"severity": sev,
})
print(json.dumps(output, indent=2, ensure_ascii=False))
def main():
parser = argparse.ArgumentParser()
subs = parser.add_subparsers(dest="cmd")
p_train = subs.add_parser("train")
p_train.add_argument("--data", type=str, required=True,
help="data/severity_yolo (train/val/test alti hafif/orta/agir klasorlu)")
p_train.add_argument("--model", type=str, default="yolo26n-cls")
p_train.add_argument("--epochs", type=int, default=50)
p_train.add_argument("--imgsz", type=int, default=224)
p_train.add_argument("--batch", type=int, default=64)
p_train.add_argument("--device", type=str, default="0")
p_train.set_defaults(func=cmd_train)
p_test = subs.add_parser("test")
p_test.add_argument("--image", type=str, required=True)
p_test.add_argument("--damage_weights", type=str, required=True)
p_test.add_argument("--severity_weights", type=str, default=None)
p_test.set_defaults(func=cmd_test)
args = parser.parse_args()
if hasattr(args, "func"):
args.func(args)
else:
parser.print_help()
if __name__ == "__main__":
main()
|