File size: 21,319 Bytes
c73374c |
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 |
"""
Character Detection Module
Integra el trabajo de Ana para detección de personajes mediante:
1. Extracción de caras y embeddings
2. Extracción de voces y embeddings
3. Clustering jerárquico aglomerativo
4. Generación de carpetas por personaje
"""
import cv2
import os
import json
import logging
import shutil
from pathlib import Path
import numpy as np
from scipy.cluster.hierarchy import linkage, fcluster
from collections import Counter
from typing import List, Dict, Any, Tuple
# Imports de las herramientas de vision y audio desde los módulos de la raíz
try:
# DeepFace para detección y embeddings de caras
from deepface import DeepFace
DEEPFACE_AVAILABLE = True
except Exception as e:
DEEPFACE_AVAILABLE = False
logging.warning(f"DeepFace no disponible: {e}")
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class CharacterDetector:
"""
Detector de personajes que integra el trabajo de Ana.
"""
def __init__(self, video_path: str, output_base: Path, video_name: str = None):
"""
Args:
video_path: Ruta al archivo de vídeo
output_base: Directorio base para guardar resultados (ej: /tmp/temp/video_name)
video_name: Nombre del vídeo (para construir URLs)
"""
self.video_path = video_path
self.output_base = Path(output_base)
self.output_base.mkdir(parents=True, exist_ok=True)
self.video_name = video_name or self.output_base.name
# Crear subdirectorios
self.faces_dir = self.output_base / "faces"
self.voices_dir = self.output_base / "voices"
self.scenes_dir = self.output_base / "scenes"
for d in [self.faces_dir, self.voices_dir, self.scenes_dir]:
d.mkdir(parents=True, exist_ok=True)
def extract_faces_embeddings(self, *, start_offset_sec: float = 3.0, extract_every_sec: float = 0.5,
detector_backend: str = 'retinaface', min_face_area: int = 100,
enforce_detection: bool = False) -> List[Dict[str, Any]]:
"""
Extrae caras del vídeo y calcula sus embeddings usando DeepFace directamente.
Returns:
Lista de dicts con {"embeddings": [...], "path": "..."}
"""
if not DEEPFACE_AVAILABLE:
logger.warning("DeepFace no disponible, retornando lista vacía")
return []
logger.info("Extrayendo caras del vídeo con DeepFace...")
extract_every = float(extract_every_sec)
video = cv2.VideoCapture(self.video_path)
fps = int(video.get(cv2.CAP_PROP_FPS))
total_frames = int(video.get(cv2.CAP_PROP_FRAME_COUNT))
frame_interval = int(fps * extract_every)
frame_count = 0
saved_count = 0
start_frame = int(max(0.0, start_offset_sec) * (fps if fps > 0 else 25))
embeddings_caras = []
logger.info(f"Total frames: {total_frames}, FPS: {fps}, Procesando cada {frame_interval} frames")
while True:
ret, frame = video.read()
if not ret:
break
if frame_count < start_frame:
frame_count += 1
continue
if frame_count % frame_interval == 0:
temp_path = self.faces_dir / "temp_frame.jpg"
cv2.imwrite(str(temp_path), frame)
try:
# Extraer embeddings con DeepFace
# represent() devuelve una lista de dicts, uno por cada cara detectada
face_objs = DeepFace.represent(
img_path=str(temp_path),
model_name='Facenet512',
detector_backend=detector_backend,
enforce_detection=enforce_detection
)
if face_objs:
for i, face_obj in enumerate(face_objs):
embedding = face_obj['embedding']
facial_area = face_obj.get('facial_area', {})
try:
w = int(facial_area.get('w', 0))
h = int(facial_area.get('h', 0))
if w * h < int(min_face_area):
continue
except Exception:
pass
# Guardar recorte de la cara (mejor para UI y clustering visual)
x = int(facial_area.get('x', 0)); y = int(facial_area.get('y', 0))
w = int(facial_area.get('w', 0)); h = int(facial_area.get('h', 0))
x2 = max(0, x); y2 = max(0, y)
x3 = min(frame.shape[1], x + w); y3 = min(frame.shape[0], y + h)
crop = frame[y2:y3, x2:x3] if (x3 > x2 and y3 > y2) else frame
save_path = self.faces_dir / f"face_{saved_count:04d}.jpg"
cv2.imwrite(str(save_path), crop)
embeddings_caras.append({
"embeddings": embedding,
"path": str(save_path),
"frame": frame_count,
"facial_area": facial_area
})
saved_count += 1
if frame_count % (frame_interval * 10) == 0:
logger.info(f"Progreso: frame {frame_count}/{total_frames}, caras detectadas: {saved_count}")
except Exception as e:
logger.debug(f"No se detectaron caras en frame {frame_count}: {e}")
if temp_path.exists():
os.remove(temp_path)
frame_count += 1
video.release()
logger.info(f"✓ Caras extraídas: {len(embeddings_caras)}")
return embeddings_caras
def extract_voices_embeddings(self) -> List[Dict[str, Any]]:
"""
Extrae voces del vídeo y calcula sus embeddings.
Por ahora retorna lista vacía (funcionalidad opcional).
Returns:
Lista de dicts con {"embeddings": [...], "path": "..."}
"""
logger.info("Extracción de voces deshabilitada temporalmente")
return []
def extract_scenes_embeddings(self) -> List[Dict[str, Any]]:
"""
Extrae escenas clave del vídeo.
Por ahora retorna lista vacía (funcionalidad opcional).
Returns:
Lista de dicts con {"embeddings": [...], "path": "..."}
"""
logger.info("Extracción de escenas deshabilitada temporalmente")
return []
def cluster_faces(self, embeddings_caras: List[Dict], max_groups: int, min_samples: int) -> np.ndarray:
"""
Agrupa caras similares usando clustering jerárquico aglomerativo con selección óptima.
Selecciona automáticamente el mejor número de clusters usando silhouette score.
Args:
embeddings_caras: Lista de embeddings de caras
max_groups: Número máximo de clusters a formar
min_samples: Tamaño mínimo de cluster válido
Returns:
Array de labels (cluster asignado a cada cara, -1 para ruido)
"""
if not embeddings_caras:
return np.array([])
logger.info(f"Clustering {len(embeddings_caras)} caras con max_groups={max_groups}, min_samples={min_samples}")
# Extraer solo los embeddings
X = np.array([cara['embeddings'] for cara in embeddings_caras])
if len(X) < min_samples:
# Si hay menos muestras que el mínimo, todo es ruido
return np.full(len(X), -1, dtype=int)
# Linkage usando average linkage (más flexible que ward, menos sensible a outliers)
# Esto ayuda a agrupar mejor la misma persona con diferentes ángulos/expresiones
Z = linkage(X, method='average', metric='cosine') # Cosine similarity para embeddings
# Encontrar el número óptimo de clusters usando silhouette score
from sklearn.metrics import silhouette_score
best_n_clusters = 2
best_score = -1
max_to_try = min(max_groups, len(X) - 1)
if max_to_try >= 2:
for n_clusters in range(2, max_to_try + 1):
trial_labels = fcluster(Z, t=n_clusters, criterion='maxclust') - 1
trial_counts = Counter(trial_labels)
valid_clusters = sum(1 for count in trial_counts.values() if count >= min_samples)
if valid_clusters >= 2:
try:
score = silhouette_score(X, trial_labels, metric='cosine')
# Penalización MUY fuerte para reducir duplicados de la misma persona
# Valores: 0.05 = fuerte, 0.07 = muy fuerte, 0.10 = extremo
adjusted_score = score - (n_clusters * 0.07)
if adjusted_score > best_score:
best_score = adjusted_score
best_n_clusters = n_clusters
except:
pass
logger.info(f"Clustering óptimo: {best_n_clusters} clusters (de máximo {max_groups}), silhouette: {best_score:.3f}")
labels = fcluster(Z, t=best_n_clusters, criterion='maxclust') - 1
# Filtrar clusters pequeños
label_counts = Counter(labels)
filtered_labels = []
for lbl in labels:
if label_counts[lbl] >= min_samples:
filtered_labels.append(lbl)
else:
filtered_labels.append(-1)
labels = np.array(filtered_labels, dtype=int)
# Contar clusters (excluyendo ruido -1)
n_clusters = len(set(labels)) - (1 if -1 in labels else 0)
n_noise = list(labels).count(-1)
logger.info(f"Clusters válidos encontrados: {n_clusters}, Ruido: {n_noise}")
return labels
def create_character_folders(self, embeddings_caras: List[Dict], labels: np.ndarray) -> List[Dict[str, Any]]:
"""
Crea carpetas para cada personaje detectado, valida caras y guarda metadata.
Integra validación con DeepFace para filtrar falsos positivos y detectar género.
Args:
embeddings_caras: Lista de embeddings de caras
labels: Array de labels de clustering
Returns:
Lista de personajes detectados con metadata (solo clusters válidos)
"""
from face_classifier import validate_and_classify_face, FACE_CONFIDENCE_THRESHOLD
characters_validated = []
# Agrupar caras por cluster
clusters = {}
for idx, label in enumerate(labels):
if label == -1: # Ignorar ruido
continue
if label not in clusters:
clusters[label] = []
clusters[label].append(idx)
logger.info(f"Procesando {len(clusters)} clusters detectados...")
original_cluster_count = len(clusters)
# Procesar cada cluster
for cluster_id, face_indices in clusters.items():
char_id = f"char_{cluster_id:02d}"
# PASO 1: Ordenar caras por score (usar área como proxy de calidad)
# Caras más grandes = mejor detección
face_detections = []
for face_idx in face_indices:
face_data = embeddings_caras[face_idx]
facial_area = face_data.get('facial_area', {})
w = facial_area.get('w', 0)
h = facial_area.get('h', 0)
area_score = w * h # Score basado en área
face_detections.append({
'index': face_idx,
'score': area_score,
'facial_area': facial_area,
'path': face_data['path']
})
# Ordenar por score descendente (mejores primero)
face_detections_sorted = sorted(
face_detections,
key=lambda x: x['score'],
reverse=True
)
if not face_detections_sorted:
logger.info(f"[VALIDATION] ✗ Cluster {char_id}: sense deteccions, eliminant")
continue
# PASO 2: Validar SOLO la mejor cara del cluster
best_face = face_detections_sorted[0]
best_face_path = best_face['path']
logger.info(f"[VALIDATION] Cluster {char_id}: validant millor cara (score={best_face['score']:.0f}px²)")
validation = validate_and_classify_face(best_face_path)
if not validation:
logger.info(f"[VALIDATION] ✗ Cluster {char_id}: error en validació, eliminant")
continue
# PASO 3: Verificar si és una cara vàlida
if not validation['is_valid_face'] or validation['face_confidence'] < FACE_CONFIDENCE_THRESHOLD:
logger.info(f"[VALIDATION] ✗ Cluster {char_id}: score baix ({validation['face_confidence']:.2f}), eliminant tot el clúster")
continue
# PASO 4: És una cara vàlida! Crear carpeta
char_dir = self.output_base / char_id
char_dir.mkdir(parents=True, exist_ok=True)
# PASO 5: Limitar caras a mostrar (primera meitat + 1)
total_faces = len(face_detections_sorted)
max_faces_to_show = (total_faces // 2) + 1
face_detections_limited = face_detections_sorted[:max_faces_to_show]
# Copiar solo las caras limitadas
face_files = []
for i, face_det in enumerate(face_detections_limited):
src_path = Path(face_det['path'])
dst_path = char_dir / f"face_{i:03d}.jpg"
if src_path.exists():
shutil.copy(src_path, dst_path)
face_files.append(f"/files/{self.video_name}/{char_id}/face_{i:03d}.jpg")
# Imagen representativa (la mejor)
representative_src = Path(best_face_path)
representative_dst = char_dir / "representative.jpg"
if representative_src.exists():
shutil.copy(representative_src, representative_dst)
# PASO 6: Generar nombre de clúster
cluster_number = int(char_id.split('_')[1]) + 1
character_name = f"Cluster {cluster_number}"
gender = validation['gender']
# Metadata del personaje
image_url = f"/files/{self.video_name}/{char_id}/representative.jpg"
character_data = {
"id": char_id,
"name": character_name,
"gender": gender,
"gender_confidence": validation['gender_confidence'],
"face_confidence": validation['face_confidence'],
"man_prob": validation['man_prob'],
"woman_prob": validation['woman_prob'],
"image_path": str(representative_dst),
"image_url": image_url,
"face_files": face_files,
"num_faces": len(face_detections_limited),
"total_faces_detected": total_faces,
"folder": str(char_dir)
}
characters_validated.append(character_data)
logger.info(f"[VALIDATION] ✓ Cluster {char_id}: cara vàlida! "
f"Nom={character_name}, Gender={gender} (conf={validation['gender_confidence']:.2f}), "
f"Mostrant {len(face_detections_limited)}/{total_faces} cares")
# Estadístiques finals
eliminated_count = original_cluster_count - len(characters_validated)
logger.info(f"[VALIDATION] Total: {len(characters_validated)} clústers vàlids "
f"(eliminats {eliminated_count} falsos positius)")
return characters_validated
def save_analysis_json(self, embeddings_caras: List[Dict], embeddings_voices: List[Dict],
embeddings_escenas: List[Dict]) -> Path:
"""
Guarda el análisis completo en un archivo JSON.
Similar al analysis.json de Ana.
Returns:
Path al archivo JSON guardado
"""
analysis_data = {
"caras": embeddings_caras,
"voices": embeddings_voices,
"escenas": embeddings_escenas
}
analysis_path = self.output_base / "analysis.json"
try:
with open(analysis_path, "w", encoding="utf-8") as f:
json.dump(analysis_data, f, indent=2, ensure_ascii=False)
logger.info(f"Analysis JSON guardado: {analysis_path}")
except Exception as e:
logger.warning(f"Error al guardar analysis JSON: {e}")
return analysis_path
def detect_characters(self, max_groups: int = 3, min_cluster_size: int = 3,
*, start_offset_sec: float = 3.0, extract_every_sec: float = 0.5) -> Tuple[List[Dict], Path, np.ndarray, List[Dict[str, Any]]]:
"""
Pipeline completo de detección de personajes con clustering jerárquico.
Args:
max_groups: Número máximo de clusters a formar
min_cluster_size: Tamaño mínimo de cluster
Returns:
Tuple de (lista de personajes, path al analysis.json)
"""
# 1. Extraer caras y embeddings
embeddings_caras = self.extract_faces_embeddings(start_offset_sec=start_offset_sec, extract_every_sec=extract_every_sec)
# 2. Extraer voces y embeddings (opcional, por ahora)
embeddings_voices = self.extract_voices_embeddings()
# 3. Extraer escenas y embeddings (opcional, por ahora)
embeddings_escenas = self.extract_scenes_embeddings()
# 4. Guardar análisis completo
analysis_path = self.save_analysis_json(embeddings_caras, embeddings_voices, embeddings_escenas)
# 5. Clustering de caras
labels = self.cluster_faces(embeddings_caras, max_groups, min_cluster_size)
# 6. Crear carpetas de personajes
characters = self.create_character_folders(embeddings_caras, labels)
return characters, analysis_path, labels, embeddings_caras
# Función de conveniencia para usar en el API
def detect_characters_from_video(video_path: str, output_base: str,
max_groups: int = 3, min_cluster_size: int = 3,
video_name: str = None,
*, start_offset_sec: float = 3.0, extract_every_sec: float = 0.5) -> Dict[str, Any]:
"""
Función de alto nivel para detectar personajes en un vídeo usando clustering jerárquico.
Args:
video_path: Ruta al vídeo
output_base: Directorio base para guardar resultados
max_groups: Número máximo de clusters a formar
min_cluster_size: Tamaño mínimo de cluster
video_name: Nombre del vídeo (para construir URLs)
Returns:
Dict con resultados: {"characters": [...], "analysis_path": "..."}
"""
detector = CharacterDetector(video_path, Path(output_base), video_name=video_name)
characters, analysis_path, labels, embeddings_caras = detector.detect_characters(max_groups, min_cluster_size,
start_offset_sec=start_offset_sec,
extract_every_sec=extract_every_sec)
return {
"characters": characters,
"analysis_path": str(analysis_path),
"num_characters": len(characters),
"face_labels": labels.tolist() if isinstance(labels, np.ndarray) else list(labels),
"num_face_embeddings": len(embeddings_caras)
}
|