Spaces:
Sleeping
Sleeping
File size: 14,696 Bytes
3d7d0e2 |
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 |
"""
Video Comparator Module
İki videodan yüz tespiti yaparak ortak kişileri bulur
"""
import os
import cv2
import numpy as np
from typing import List, Dict, Tuple, Optional
from dataclasses import dataclass
from sklearn.metrics.pairwise import cosine_similarity
import logging
from datetime import datetime
import json
logger = logging.getLogger(__name__)
@dataclass
class ComparisonResult:
"""Karşılaştırma sonuç verisi"""
common_faces: List[Dict] # Her iki videoda da bulunan yüzler
only_video1: List[Dict] # Sadece video 1'de bulunan yüzler
only_video2: List[Dict] # Sadece video 2'de bulunan yüzler
total_unique_video1: int
total_unique_video2: int
common_count: int
similarity_threshold: float
metadata: Dict
class VideoComparator:
"""
İki videoyu karşılaştırarak ortak yüzleri bulur
Mevcut FaceDetector'ı kullanır
"""
def __init__(self, face_detector, similarity_threshold: float = 0.6):
"""
Args:
face_detector: FaceDetector instance
similarity_threshold: Yüz benzerlik eşiği (0-1 arası, varsayılan 0.6)
"""
self.detector = face_detector
self.similarity_threshold = similarity_threshold
self.progress_callback = None
def set_progress_callback(self, callback):
"""Progress callback fonksiyonu ayarla"""
self.progress_callback = callback
def _update_progress(self, value: float, message: str):
"""Progress güncelleme"""
if self.progress_callback:
self.progress_callback(value, message)
def compare_videos(
self,
video1_path: str,
video2_path: str,
is_video1_url: bool = False,
is_video2_url: bool = False
) -> Tuple[ComparisonResult, str, List[str]]:
"""
İki videoyu karşılaştır ve ortak yüzleri bul
Args:
video1_path: İlk video yolu veya URL
video2_path: İkinci video yolu veya URL
is_video1_url: İlk video URL mi?
is_video2_url: İkinci video URL mi?
Returns:
Tuple[ComparisonResult, output_dir, saved_images]
"""
try:
logger.info("Video karşılaştırma başlatılıyor...")
start_time = datetime.now()
# Video 1'i işle
self._update_progress(0, "Video 1 işleniyor...")
logger.info(f"Video 1 işleniyor: {video1_path}")
output_dir1, faces1, metadata1 = self.detector.detect_faces(
video1_path,
is_url=is_video1_url
)
video1_faces = self._load_face_data(output_dir1, metadata1)
logger.info(f"Video 1: {len(video1_faces)} benzersiz yüz bulundu")
# Video 2'yi işle
self._update_progress(50, "Video 2 işleniyor...")
logger.info(f"Video 2 işleniyor: {video2_path}")
output_dir2, faces2, metadata2 = self.detector.detect_faces(
video2_path,
is_url=is_video2_url
)
video2_faces = self._load_face_data(output_dir2, metadata2)
logger.info(f"Video 2: {len(video2_faces)} benzersiz yüz bulundu")
# Yüzleri karşılaştır
self._update_progress(80, "Yüzler karşılaştırılıyor...")
comparison_result = self._compare_face_sets(
video1_faces,
video2_faces,
metadata1,
metadata2
)
# Sonuçları kaydet
self._update_progress(90, "Sonuçlar kaydediliyor...")
output_dir, saved_images = self._save_comparison_results(
comparison_result,
output_dir1,
output_dir2
)
elapsed_time = (datetime.now() - start_time).total_seconds()
logger.info(f"Karşılaştırma tamamlandı: {elapsed_time:.1f} saniye")
self._update_progress(100, f"✅ Tamamlandı! {comparison_result.common_count} ortak yüz bulundu")
return comparison_result, output_dir, saved_images
except Exception as e:
logger.error(f"Video karşılaştırma hatası: {e}", exc_info=True)
raise
def _load_face_data(self, output_dir: str, metadata: Dict) -> List[Dict]:
"""
Bir videodan tespit edilen yüzleri yükle
Returns:
List of dicts with 'embedding', 'face_path', 'cluster_id', 'quality_score'
"""
faces = []
for face_info in metadata['faces']:
face_path = os.path.join(output_dir, face_info['face_file'])
if not os.path.exists(face_path):
logger.warning(f"Yüz dosyası bulunamadı: {face_path}")
continue
# Yüz görselini oku ve embedding çıkar
face_img = cv2.imread(face_path)
embedding, _ = self.detector.extract_embeddings(face_img)
if embedding is not None:
faces.append({
'embedding': embedding,
'face_path': face_path,
'cluster_id': face_info['cluster_id'],
'quality_score': face_info['quality_score'],
'cluster_size': face_info.get('cluster_size', 1),
'bbox': face_info.get('bbox', [])
})
return faces
def _compare_face_sets(
self,
video1_faces: List[Dict],
video2_faces: List[Dict],
metadata1: Dict,
metadata2: Dict
) -> ComparisonResult:
"""
İki video yüz setini karşılaştır
"""
common_faces = []
only_video1 = []
only_video2 = []
# Video 1'deki her yüz için Video 2'de eşleşme ara
matched_video2_indices = set()
for v1_face in video1_faces:
best_match = None
best_similarity = 0
best_v2_idx = -1
# Video 2'deki tüm yüzlerle karşılaştır
for v2_idx, v2_face in enumerate(video2_faces):
if v2_idx in matched_video2_indices:
continue # Zaten eşleşmiş
similarity = cosine_similarity(
[v1_face['embedding']],
[v2_face['embedding']]
)[0][0]
if similarity > best_similarity:
best_similarity = similarity
best_match = v2_face
best_v2_idx = v2_idx
# Eşik üzerinde eşleşme var mı?
if best_similarity >= self.similarity_threshold and best_match:
matched_video2_indices.add(best_v2_idx)
common_faces.append({
'video1_face': v1_face,
'video2_face': best_match,
'similarity': float(best_similarity),
'match_id': len(common_faces)
})
else:
only_video1.append({
'face': v1_face,
'person_id': v1_face['cluster_id']
})
# Video 2'de eşleşmeyen yüzler
for v2_idx, v2_face in enumerate(video2_faces):
if v2_idx not in matched_video2_indices:
only_video2.append({
'face': v2_face,
'person_id': v2_face['cluster_id']
})
return ComparisonResult(
common_faces=common_faces,
only_video1=only_video1,
only_video2=only_video2,
total_unique_video1=len(video1_faces),
total_unique_video2=len(video2_faces),
common_count=len(common_faces),
similarity_threshold=self.similarity_threshold,
metadata={
'video1': {
'path': metadata1['video_path'],
'duration': metadata1['duration'],
'fps': metadata1['fps']
},
'video2': {
'path': metadata2['video_path'],
'duration': metadata2['duration'],
'fps': metadata2['fps']
},
'comparison_time': datetime.now().isoformat()
}
)
def _save_comparison_results(
self,
result: ComparisonResult,
output_dir1: str,
output_dir2: str
) -> Tuple[str, List[str]]:
"""
Karşılaştırma sonuçlarını kaydet
Returns:
Tuple[output_directory, list_of_saved_image_paths]
"""
# Ana çıktı dizini oluştur
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
output_dir = os.path.join(
os.path.dirname(output_dir1),
f"comparison_{timestamp}"
)
os.makedirs(output_dir, exist_ok=True)
# Alt dizinler
common_dir = os.path.join(output_dir, "common_faces")
only_v1_dir = os.path.join(output_dir, "only_video1")
only_v2_dir = os.path.join(output_dir, "only_video2")
os.makedirs(common_dir, exist_ok=True)
os.makedirs(only_v1_dir, exist_ok=True)
os.makedirs(only_v2_dir, exist_ok=True)
saved_images = []
# Ortak yüzleri kaydet (yan yana)
for idx, match in enumerate(result.common_faces):
v1_img = cv2.imread(match['video1_face']['face_path'])
v2_img = cv2.imread(match['video2_face']['face_path'])
# İki resmi yan yana birleştir
combined = np.hstack([v1_img, v2_img])
# Benzerlik skorunu ekle
similarity = match['similarity']
cv2.putText(
combined,
f"Similarity: {similarity:.2%}",
(10, 30),
cv2.FONT_HERSHEY_SIMPLEX,
0.7,
(0, 255, 0),
2
)
output_path = os.path.join(common_dir, f"match_{idx:03d}.jpg")
cv2.imwrite(output_path, combined, [cv2.IMWRITE_JPEG_QUALITY, 95])
saved_images.append(output_path)
# Sadece Video 1'de olan yüzler
for idx, item in enumerate(result.only_video1):
face_img = cv2.imread(item['face']['face_path'])
output_path = os.path.join(only_v1_dir, f"person_{idx:03d}.jpg")
cv2.imwrite(output_path, face_img, [cv2.IMWRITE_JPEG_QUALITY, 95])
# Sadece Video 2'de olan yüzler
for idx, item in enumerate(result.only_video2):
face_img = cv2.imread(item['face']['face_path'])
output_path = os.path.join(only_v2_dir, f"person_{idx:03d}.jpg")
cv2.imwrite(output_path, face_img, [cv2.IMWRITE_JPEG_QUALITY, 95])
# Metadata kaydet
metadata = {
'comparison_results': {
'common_count': result.common_count,
'only_video1_count': len(result.only_video1),
'only_video2_count': len(result.only_video2),
'total_video1': result.total_unique_video1,
'total_video2': result.total_unique_video2,
'similarity_threshold': result.similarity_threshold
},
'common_faces': [
{
'match_id': m['match_id'],
'similarity': m['similarity'],
'video1_cluster_id': m['video1_face']['cluster_id'],
'video2_cluster_id': m['video2_face']['cluster_id']
}
for m in result.common_faces
],
'metadata': result.metadata
}
metadata_path = os.path.join(output_dir, 'comparison_metadata.json')
with open(metadata_path, 'w', encoding='utf-8') as f:
json.dump(metadata, f, indent=2, ensure_ascii=False)
logger.info(f"Karşılaştırma sonuçları kaydedildi: {output_dir}")
return output_dir, saved_images
def generate_report(self, result: ComparisonResult) -> str:
"""
Karşılaştırma raporu oluştur (Markdown formatında)
"""
report = f"""
# 🔍 Video Karşılaştırma Raporu
## 📊 Özet Bilgiler
| Metrik | Video 1 | Video 2 | Ortak |
|--------|---------|---------|-------|
| **Benzersiz Kişi** | {result.total_unique_video1} | {result.total_unique_video2} | {result.common_count} |
| **Sadece Bu Videoda** | {len(result.only_video1)} | {len(result.only_video2)} | - |
### 🎯 Karşılaştırma Parametreleri
- **Benzerlik Eşiği**: {result.similarity_threshold:.0%}
- **Ortak Kişi Oranı**: {(result.common_count / max(result.total_unique_video1, result.total_unique_video2) * 100):.1f}%
---
## 👥 Ortak Yüzler ({result.common_count} kişi)
Her iki videoda da bulunan kişiler:
"""
for idx, match in enumerate(result.common_faces, 1):
similarity = match['similarity']
report += f"""
**Kişi {idx}**
- 🎯 Benzerlik Skoru: {similarity:.1%}
- 📹 Video 1 Cluster ID: {match['video1_face']['cluster_id']}
- 📹 Video 2 Cluster ID: {match['video2_face']['cluster_id']}
"""
if result.only_video1:
report += f"""
---
## 📹 Sadece Video 1'de Bulunanlar ({len(result.only_video1)} kişi)
"""
for idx, item in enumerate(result.only_video1, 1):
report += f"- Kişi {idx} (Cluster ID: {item['person_id']})\n"
if result.only_video2:
report += f"""
---
## 📹 Sadece Video 2'de Bulunanlar ({len(result.only_video2)} kişi)
"""
for idx, item in enumerate(result.only_video2, 1):
report += f"- Kişi {idx} (Cluster ID: {item['person_id']})\n"
report += """
---
## ℹ️ Video Bilgileri
"""
report += f"""
### Video 1
- **Süre**: {result.metadata['video1']['duration']:.1f} saniye
- **FPS**: {result.metadata['video1']['fps']}
### Video 2
- **Süre**: {result.metadata['video2']['duration']:.1f} saniye
- **FPS**: {result.metadata['video2']['fps']}
---
*Rapor Oluşturulma: {result.metadata['comparison_time']}*
"""
return report |