Spaces:
Configuration error
Configuration error
File size: 23,587 Bytes
7ca20de c29babb 7ca20de c29babb 7ca20de c29babb 7ca20de c29babb 7ca20de c29babb 7ca20de c29babb 7ca20de c29babb 7ca20de c29babb | 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 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 | # %%
import argparse
import heapq
import os
import subprocess
from concurrent.futures import ThreadPoolExecutor
from glob import glob
import cv2
import imageio.v3 as iio
import numpy as np
from tqdm import tqdm
from src.retinaface import RetinaFace, prepare_model
def max_spread_permutation_pq(N, start=0):
"""
Generate a permutation of 0..N-1 such that at each step
the next element is the one whose minimum distance to
all previously chosen elements is maximized, using a
priority queue to speed up selection.
Args:
N (int): Length of the permutation.
start (int): The first element in the permutation (default 0).
Returns:
List[int]: A list representing the permutation.
"""
if not (0 <= start < N):
raise ValueError("`start` must be in the range [0, N-1]")
# Initialize chosen list and distance map
chosen = [start]
dist = {i: abs(i - start) for i in range(N) if i != start}
# Build a max-heap (use negative distances for heapq)
heap = [(-d, i) for i, d in dist.items()]
heapq.heapify(heap)
# Greedily pick elements
while heap:
# Pop until we find a valid (up-to-date) entry
while True:
neg_d, candidate = heapq.heappop(heap)
current = -neg_d
# Only accept if it matches the latest dist
if dist.get(candidate, -1) == current:
break
# Add the selected candidate
chosen.append(candidate)
# Remove it from dist-map
del dist[candidate]
# Update distances for remaining elements
for other in list(dist.keys()):
new_d = abs(other - candidate)
if new_d < dist[other]:
dist[other] = new_d
heapq.heappush(heap, (-new_d, other))
return chosen
def get_video_frames_generator(
source_path: str,
mask_path: str,
stride: int = 1,
num_frames=32,
mode="at_least",
):
try:
props = iio.improps(source_path, plugin="pyav")
video_frames = props.shape[0]
except Exception as e:
print(f"Warning: Video {source_path} cannot be opened! {e}")
return
if mask_path is not None:
try:
mask_props = iio.improps(mask_path, plugin="pyav")
mask_frames = mask_props.shape[0]
except Exception as e:
print(f"Warning: Mask video {mask_path} cannot be opened! {e}")
return
if video_frames != mask_frames:
print(
f"Warning: {source_path} and {mask_path} have different number of frames {video_frames} vs {mask_frames}!"
)
total_frames = min(video_frames, mask_frames)
else:
total_frames = video_frames
# Get the mode
if mode == "fixed_num_frames":
# Get the frame rate of the video by dividing the number of frames by the duration (same interval between frames)
frame_ids = np.linspace(0, total_frames - 1, num_frames, endpoint=True, dtype=int)
elif mode == "fixed_stride":
# Get the frame rate of the video by dividing the number of frames by the duration (same interval between frames)
frame_ids = np.arange(0, total_frames, stride, dtype=int)
elif mode == "at_least":
frame_ids = max_spread_permutation_pq(total_frames, start=total_frames // 2)
else:
raise ValueError(f"Invalid mode: {mode}. Choose 'fixed_num_frames', 'fixed_stride', or 'at_least'.")
# Iterate through the selected frame IDs
for frame_id in frame_ids:
try:
frame_rgb = iio.imread(source_path, index=frame_id, plugin="pyav")
frame = cv2.cvtColor(frame_rgb, cv2.COLOR_RGB2BGR)
except Exception as e:
print(f"Warning: Failed to read frame {frame_id} of {source_path}. Skipping. {e}")
continue
if mask_path is not None:
try:
mask_rgb = iio.imread(mask_path, index=frame_id, plugin="pyav")
mask = cv2.cvtColor(mask_rgb, cv2.COLOR_RGB2BGR)
except Exception as e:
print(f"Warning: Failed to read mask frame {frame_id} of {mask_path}. Skipping. {e}")
continue
yield frame, frame_id, mask
else:
yield frame, frame_id, None
def align_face(
img: np.ndarray,
landmarks: np.ndarray,
target_size: None | tuple = None,
scale: float = 1.3,
mask: np.ndarray = None,
):
"""
Aligns a face based on 5-point facial landmarks (eyes, nose, mouth corners).
Args:
img: Input image containing the face
landmarks: 5-point facial landmarks array with shape (5, 2)
target_size: Desired output size as (width, height) tuple
scale: Scaling factor to control how much context around the face to include
stabilize_features: Whether to use standard reference points for consistent alignment
return_transform: Whether to return the transformation matrix
mask: Resize mask the same way as img
Returns:
Aligned face image with specified target_size
Optionally returns the transformation matrix if return_transform=True
"""
dst = np.array(
[
[0.34, 0.46],
[0.66, 0.46],
[0.5, 0.64],
[0.37, 0.82],
[0.63, 0.82],
],
dtype=np.float32,
)
if target_size is None:
# Compute desired distances between all pairs
desired_dists = np.linalg.norm(landmarks[:, None, :] - landmarks[None, :, :], axis=-1)
# Destination distances between all pairs
dst_dists = np.linalg.norm(dst[:, None, :] - dst[None, :, :], axis=-1)
# Take upper triangle of the distance matrix
upper_triangle_indices = np.triu_indices(len(dst), k=1)
dst_dists = dst_dists[upper_triangle_indices]
desired_dists = desired_dists[upper_triangle_indices]
# Approximate target size
approx_size = np.round(np.mean(desired_dists / dst_dists) * scale).astype(int)
target_size = (approx_size, approx_size)
dst[:, 0] = dst[:, 0] * target_size[0]
dst[:, 1] = dst[:, 1] * target_size[1]
margin_rate = scale - 1
x_margin = target_size[0] * margin_rate / 2.0
y_margin = target_size[1] * margin_rate / 2.0
# move
dst[:, 0] += x_margin
dst[:, 1] += y_margin
# resize
dst[:, 0] *= target_size[0] / (target_size[0] + 2 * x_margin)
dst[:, 1] *= target_size[1] / (target_size[1] + 2 * y_margin)
src = landmarks.astype(np.float32)
M = cv2.estimateAffinePartial2D(src, dst, method=cv2.LMEDS)[0]
img = cv2.warpAffine(img, M, target_size, flags=cv2.INTER_LINEAR)
# Warp landmarks, show
# landmarks = cv2.transform(np.expand_dims(landmarks, axis=0), M)[0]
# for point in landmarks:
# cv2.circle(img, tuple(point.astype(int)), 2, (0, 255, 0), -1)
if mask is not None:
mask = cv2.warpAffine(mask, M, target_size, flags=cv2.INTER_NEAREST)
return img, mask
def process_video(
source_path,
target_path,
mask_path,
model: RetinaFace,
scale=1.3,
target_size=(256, 256),
stride=1,
num_frames=32,
mode="at_least",
skip_processed_videos=False,
skip_processed_frames=False,
):
frame_save_path = target_path.replace(".mp4", "/frames")
# Skip if frame_save_path exists
if skip_processed_videos and os.path.exists(frame_save_path):
print(f"Frames for {source_path} already processed.")
return
else:
print(f"Processing {source_path}")
# Create a frame generator from video path for iteration of frames
frame_generator = get_video_frames_generator(
source_path,
mask_path,
stride=stride,
num_frames=num_frames,
mode=mode,
)
# desc = f"Processing {os.path.basename(source_path)}"
num_saved = 0
for frame, frame_id, mask in frame_generator:
frame_filename = os.path.join(frame_save_path, f"frame_{frame_id:04d}.png")
if skip_processed_frames and os.path.exists(frame_filename):
print(f"Frame {frame_id} of {source_path} already processed.")
num_saved += 1
if mode in ["fixed_stride", "at_least"] and num_saved >= num_frames and num_frames != -1:
break
continue
try:
preds = model.detect(frame)
except Exception as e:
print(f"Error during detection: {e}")
continue
xyxy, landmarks = preds
if len(xyxy) == 0:
print(f"No faces detected in frame {frame_id} of {source_path}")
continue
selected_landmarks = None
if mask is not None:
# It is possible that the mask is empty -> skip this frame
if mask.sum() == 0:
print(f"Warning: Mask is empty for frame {frame_id} of {source_path}. Skipping.")
continue
# Convert mask to grayscale if it's not already
mask_img = cv2.cvtColor(mask, cv2.COLOR_BGR2GRAY) if len(mask.shape) == 3 else mask
# Threshold the mask to create a binary mask
mask_img = cv2.threshold(mask_img, 1, 255, cv2.THRESH_BINARY)[1]
# Find the face that intersects the most with the mask
best_landmarks = None
max_intersection = 0
for i in range(len(xyxy)):
# Get the bounding box coordinates
x1, y1, x2, y2 = xyxy[i, :4].astype(int)
# Create a mask for the face
face_mask = np.zeros_like(mask_img)
face_mask[y1:y2, x1:x2] = 255
# Calculate the intersection between the face mask and the provided mask
intersection = np.sum(np.logical_and(face_mask, mask_img))
# Update the best face if the intersection is greater than the current maximum
if intersection > max_intersection:
max_intersection = intersection
best_landmarks = landmarks[i]
# If a face was found, use it; otherwise, skip this frame
if best_landmarks is not None:
selected_landmarks = best_landmarks
else:
print(f"No suitable face found in frame {frame_id} of {source_path} with the provided mask.")
continue
# """
# Select landmarks of the largest face if not using mask
if selected_landmarks is None:
areas = (xyxy[:, 2] - xyxy[:, 0]) * (xyxy[:, 3] - xyxy[:, 1])
idx = np.argmax(areas)
selected_landmarks = landmarks[idx]
# Show all landmarks
# for L, B in zip(landmarks, xyxy):
# for point in L:
# cv2.circle(frame, tuple(point.astype(int)), 2, (0, 255, 0), -1)
# cv2.rectangle(frame, tuple(B[0:2].astype(int)), tuple(B[2:4].astype(int)), (0, 255, 0), 2)
# Align the face
aligned_face, _ = align_face(frame, selected_landmarks, target_size=target_size, scale=scale)
# Save the aligned face
os.makedirs(frame_save_path, exist_ok=True)
cv2.imwrite(frame_filename, aligned_face)
# """
num_saved += 1
if mode in ["fixed_stride", "at_least"] and num_saved >= num_frames and num_frames != -1:
break
if num_saved == 0:
print(f"No faces were saved from {source_path}. Check the detection threshold or input video.")
return frame_save_path
def process_image(
source_path,
target_path,
model: RetinaFace,
scale=1.3,
target_size=(256, 256),
skip_processed_frames=False,
):
"""Processes a single image file."""
if skip_processed_frames and os.path.exists(target_path):
print(f"Image {source_path} already processed.")
return target_path
else:
print(f"Processing {source_path}")
try:
img_rgb = iio.imread(source_path)
img = cv2.cvtColor(img_rgb, cv2.COLOR_RGB2BGR)
except Exception as e:
print(f"Failed to read image {source_path}: {e}")
return None
try:
preds = model.detect(img)
except Exception as e:
print(f"Error during detection: {e}")
return None
xyxy, landmarks = preds
if len(xyxy) == 0:
print(f"No faces detected in {source_path}")
return None
# Select landmarks of the largest face
areas = (xyxy[:, 2] - xyxy[:, 0]) * (xyxy[:, 3] - xyxy[:, 1])
idx = np.argmax(areas)
landmarks = landmarks[idx]
# Align the face
aligned_face, _ = align_face(img, landmarks, target_size=target_size, scale=scale)
# Save the aligned face
os.makedirs(os.path.dirname(target_path), exist_ok=True)
cv2.imwrite(target_path, aligned_face)
return target_path
def get_output_path(source_path, input_folder, output_folder):
# Example: source_path = input_folder + new_source_path``
new_source_path = source_path.replace(input_folder, os.path.basename(input_folder))
# Create directory for each video
new_source_path = new_source_path.replace(".mp4", "")
# Place it in the output folder
output_path = os.path.join(output_folder, new_source_path)
return output_path
def get_mask_path(input_folder, input_mask_folder, source_path):
if input_mask_folder is not None:
# Change the input folder to the mask folder
source_path = source_path.replace(input_folder, input_mask_folder)
#! FF++ has masks named the same way as original videos
if "FaceForensics" in source_path or "FF++" in source_path:
return source_path
#! Else assume masks are named with _mask suffix
source_path = source_path.replace(".mp4", "_mask.mp4")
return source_path
return None
def process_mixed_types(
input_folder_or_file: str | list[str],
input_mask_folder: None | str,
model: RetinaFace,
num_workers=1,
scale=1.3,
target_size=(256, 256),
stride=1,
num_frames=32,
mode: str = "fixed_num_frames",
output_folder: str = "outputs",
possible_extensions: tuple[str] = ("mp4", "jpg", "png", "jpeg"),
skip_processed_videos: bool = False,
skip_processed_frames: bool = False,
):
if os.path.isfile(input_folder_or_file):
# If input is a file
if input_folder_or_file.endswith(possible_extensions):
# If input is a media file
files = [input_folder_or_file]
elif input_folder_or_file.endswith("txt"):
# If input is a txt file
with open(input_folder_or_file, "r") as f:
files = f.read().splitlines()
else:
# If input is a folder
files = find_files(input_folder_or_file, possible_extensions)
if not files:
print(f"No files found in {input_folder_or_file}")
return
def process(source_path):
output_path = get_output_path(source_path, input_folder_or_file, output_folder)
if source_path.endswith(".mp4"):
mask_path = get_mask_path(input_folder_or_file, input_mask_folder, source_path)
try:
return process_video(
source_path,
output_path,
mask_path,
model,
scale=scale,
target_size=target_size,
stride=stride,
num_frames=num_frames,
mode=mode,
skip_processed_videos=skip_processed_videos,
skip_processed_frames=skip_processed_frames,
)
except Exception as e:
print(f"Error processing video {source_path}: {e}")
else:
try:
image_output_path = output_path
# .../image123.jpg -> .../image123/image123.jpg
img_name, img_extension = os.path.basename(image_output_path).split(".")
image_output_path = os.path.join(
os.path.dirname(image_output_path), img_name, f"{img_name}.{img_extension}"
)
return process_image(
source_path,
image_output_path,
model,
scale=scale,
target_size=target_size,
skip_processed_frames=skip_processed_frames,
)
except Exception as e:
print(f"Error processing image {source_path}: {e}")
files = sorted(files) # Sort files for consistent processing
with ThreadPoolExecutor(max_workers=num_workers) as executor:
futures = [executor.submit(process, file) for file in files]
for future in tqdm(futures, desc=f"Processing videos in {input_folder_or_file}", leave=True):
future.result()
print("Processing complete.")
def find_files_fd(start_dir, extensions):
"""
Finds files with given extensions recursively using the 'fd' command-line tool.
Args:
start_dir (str): The directory to start searching from.
extensions (list): A list of file extensions without the leading dot (e.g., ['png', 'jpg']).
Returns:
list: A list of full path strings for each found file. Returns empty list if fd fails.
Raises:
FileNotFoundError: If the 'fd' command is not found in the system's PATH.
"""
if not os.path.isdir(start_dir):
print(f"Error: Start directory not found: {start_dir}")
return []
try:
# Build the command. Use -e for each extension.
command = ["fd", "--type", "f", "--type", "l"] # Find only files or links to files
for ext in extensions:
# fd expects extensions without the dot
command.extend(["--extension", ext])
# Add the pattern ('.' matches everything, filtering is done by extension)
# and the directory to search
command.extend([".", start_dir])
# Run the command
result = subprocess.run(
command,
capture_output=True, # Capture stdout and stderr
text=True, # Decode output as text (UTF-8 by default)
check=False, # Do not raise exception on non-zero exit code automatically
encoding="utf-8", # Be explicit about encoding
)
# Check if fd ran successfully
if result.returncode != 0:
# fd returns specific exit codes, e.g., 1 for errors, 2 if pattern not found (but we use '.')
# We mainly care if the command executed but maybe found nothing or had an issue.
# Check stderr for actual errors.
if result.stderr:
print(f"Error running fd (code {result.returncode}): {result.stderr.strip()}")
# If stderr is empty but code isn't 0, it might just mean no files found, which is okay.
# We return an empty list in case of errors or no files found.
return [] # Return empty list on error or if no files found
# fd outputs one path per line. Split the output.
# .strip() removes potential leading/trailing whitespace/newlines
file_list = result.stdout.strip().splitlines()
return file_list
except FileNotFoundError:
raise # Re-raise the exception so the caller knows fd is missing
except Exception as e:
print(f"An unexpected error occurred while running fd: {e}")
return [] # Return empty list on other unexpected errors
def find_files_glob(start_dir, extensions):
"""
Finds files with given extensions recursively using glob.
Args:
start_dir (str): The directory to start searching from.
extensions (list): A list of file extensions without the leading dot (e.g., ['png', 'jpg']).
Returns:
list: A list of full path strings for each found file.
"""
files = []
for ext in extensions:
files.extend(glob(f"{start_dir}/**/*{ext}", recursive=True))
return sorted(f for f in files if os.path.isfile(f))
def find_files(start_dir, extensions):
try:
return find_files_fd(start_dir, extensions)
except Exception:
return find_files_glob(start_dir, extensions)
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument(
"-i",
"--input_folder_or_file",
type=str,
required=True,
help="Path to the input folder containing videos or images.",
)
parser.add_argument(
"--mask_folder",
type=str,
default=None,
help="Path to the input folder containing masks (optional).",
)
parser.add_argument(
"--num_workers",
type=int,
default=8,
help="Number of worker threads.",
)
parser.add_argument(
"-s",
"--scale",
type=float,
default=1.3,
help="Scale factor for face alignment.",
)
parser.add_argument(
"--target_size",
type=str,
default="256,256",
help="Target size for aligned faces as width, height (e.g., 256,256) or 'none'.",
)
parser.add_argument(
"--det_thres",
type=float,
default=0.4,
help="Detection threshold for RetinaFace.",
)
parser.add_argument(
"-m",
"--mode",
type=str,
default="at_least",
choices=["fixed_num_frames", "fixed_stride", "at_least"],
help="Mode for frame extraction from videos ('fixed_num_frames', 'fixed_stride', or 'at_least').",
)
parser.add_argument(
"--stride",
type=int,
default=1,
help="Stride for frame extraction from videos (only used in 'fixed_stride' mode).",
)
parser.add_argument(
"-n",
"--num_frames",
type=int,
default=32,
help="Maximum number of frames to extract from each video, -1 for all frames.",
)
parser.add_argument(
"-o",
"--output_folder",
type=str,
default="outputs",
help="Output folder for the preprocessed images.",
)
parser.add_argument(
"--skip_processed_videos",
action="store_true",
help="Skip videos that have already been processed.",
)
parser.add_argument(
"--skip_processed_frames",
action="store_true",
help="Skip frames that have already been processed.",
)
args = parser.parse_args()
args.target_size = parse_target_size(args.target_size)
return args
def parse_target_size(target_size_str):
try:
width, height = map(int, target_size_str.split(","))
return (width, height)
except ValueError:
if "none" in target_size_str.lower():
return None
raise ValueError("Invalid target_size format. Use 'width,height' or 'none'.")
def main():
args = get_args()
model = prepare_model(args.det_thres)
process_mixed_types(
input_folder_or_file=args.input_folder_or_file,
input_mask_folder=args.mask_folder,
model=model,
num_workers=args.num_workers,
scale=args.scale,
target_size=args.target_size,
stride=args.stride,
num_frames=args.num_frames,
mode=args.mode,
output_folder=args.output_folder,
skip_processed_videos=args.skip_processed_videos,
skip_processed_frames=args.skip_processed_frames,
)
exit(0)
if __name__ == "__main__":
main()
|