File size: 23,929 Bytes
66dec57 f870955 66dec57 f870955 66dec57 f870955 66dec57 f870955 66dec57 f870955 66dec57 | 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 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | from __future__ import annotations
import json
import math
import re
import shutil
import struct
import subprocess
import time
import uuid
import zipfile
from dataclasses import dataclass
from fractions import Fraction
from pathlib import Path
from typing import Final
import cv2
import numpy as np
APP_DIR: Final[Path] = Path(__file__).resolve().parent
WORK_DIR: Final[Path] = APP_DIR / "work"
OUTPUTS_DIR: Final[Path] = APP_DIR / "outputs"
THUMB_SIZE: Final[tuple[int, int]] = (96, 96)
JPEG_QUALITY: Final[int] = 95
FONT = cv2.FONT_HERSHEY_SIMPLEX
WORK_DIR.mkdir(parents=True, exist_ok=True)
OUTPUTS_DIR.mkdir(parents=True, exist_ok=True)
@dataclass(frozen=True)
class ProfileConfig:
candidate_multiplier: int
cut_threshold: float
min_blur_percentile: float
sequential_overlap: int
min_segment_frames: int
PROFILES: Final[dict[str, ProfileConfig]] = {
"balanced": ProfileConfig(
candidate_multiplier=6,
cut_threshold=0.42,
min_blur_percentile=35.0,
sequential_overlap=8,
min_segment_frames=14,
),
"dense": ProfileConfig(
candidate_multiplier=8,
cut_threshold=0.38,
min_blur_percentile=30.0,
sequential_overlap=12,
min_segment_frames=18,
),
"sparse": ProfileConfig(
candidate_multiplier=5,
cut_threshold=0.48,
min_blur_percentile=40.0,
sequential_overlap=6,
min_segment_frames=12,
),
}
AUTO_TARGET_FRAME_OPTIONS: Final[tuple[int, ...]] = (16, 24, 32, 48)
@dataclass(frozen=True)
class VideoMetadata:
fps: float
frame_count: int
duration_seconds: float
width: int
height: int
@dataclass(frozen=True)
class FrameCandidate:
candidate_index: int
frame_index: int
timestamp_seconds: float
path: Path
blur_score: float
motion_score: float
cut_score: float
thumb: np.ndarray
@dataclass(frozen=True)
class ConversionOutputs:
archive_path: Path
report_path: Path
contact_sheet_path: Path
scene_name: str
selected_frames: int
registered_frames: int
duration_seconds: float
quality_label: str
def infer_target_frames(metadata: VideoMetadata) -> int:
duration_seconds = metadata.duration_seconds
if duration_seconds <= 6.0:
return AUTO_TARGET_FRAME_OPTIONS[0]
if duration_seconds <= 12.0:
return AUTO_TARGET_FRAME_OPTIONS[1]
if duration_seconds <= 20.0:
return AUTO_TARGET_FRAME_OPTIONS[2]
return AUTO_TARGET_FRAME_OPTIONS[3]
def _now_ms() -> int:
return int(time.time() * 1000)
def _ensure_dir(path: Path) -> Path:
path.mkdir(parents=True, exist_ok=True)
return path
def _unique_dir(parent: Path, prefix: str) -> Path:
path = parent / f"{prefix}-{_now_ms()}-{uuid.uuid4().hex[:8]}"
path.mkdir(parents=True, exist_ok=True)
return path
def _slugify(value: str) -> str:
slug = re.sub(r"[^a-zA-Z0-9]+", "-", value).strip("-").lower()
return slug or "scene"
def _run(cmd: list[str], cwd: Path | None = None) -> None:
result = subprocess.run(
cmd,
cwd=str(cwd) if cwd else None,
text=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=False,
)
if result.returncode != 0:
raise RuntimeError(
f"Command failed ({result.returncode}): {' '.join(cmd)}\n{result.stdout.strip()}"
)
def _require_binary(binary_name: str) -> None:
if shutil.which(binary_name) is None:
raise RuntimeError(f"Required executable not found: {binary_name}")
def _read_video_metadata_ffprobe(video_path: Path) -> VideoMetadata | None:
if shutil.which("ffprobe") is None:
return None
result = subprocess.run(
[
"ffprobe",
"-v",
"error",
"-print_format",
"json",
"-show_streams",
"-show_format",
str(video_path),
],
text=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
check=False,
)
if result.returncode != 0 or not result.stdout.strip():
return None
try:
payload = json.loads(result.stdout)
except json.JSONDecodeError:
return None
video_stream = next(
(stream for stream in payload.get("streams", []) if stream.get("codec_type") == "video"),
None,
)
if not video_stream:
return None
width = int(video_stream.get("width") or 0)
height = int(video_stream.get("height") or 0)
fps_value = video_stream.get("avg_frame_rate") or video_stream.get("r_frame_rate") or "0/1"
try:
fps = float(Fraction(fps_value))
except (ValueError, ZeroDivisionError):
fps = 0.0
duration_value = video_stream.get("duration") or payload.get("format", {}).get("duration") or 0.0
try:
duration_seconds = float(duration_value)
except (TypeError, ValueError):
duration_seconds = 0.0
frame_count_value = video_stream.get("nb_frames")
try:
frame_count = int(frame_count_value) if frame_count_value is not None else 0
except (TypeError, ValueError):
frame_count = 0
if frame_count <= 0 and fps > 0 and duration_seconds > 0:
frame_count = max(1, int(round(fps * duration_seconds)))
if fps <= 0 and frame_count > 0 and duration_seconds > 0:
fps = frame_count / duration_seconds
if width <= 0 or height <= 0 or duration_seconds <= 0:
return None
if fps <= 0:
fps = 24.0
return VideoMetadata(
fps=fps,
frame_count=frame_count,
duration_seconds=duration_seconds,
width=width,
height=height,
)
def normalize_video_input(video_path: Path, work_dir: Path) -> Path:
_require_binary("ffmpeg")
normalized_path = work_dir / "normalized.mp4"
_run(
[
"ffmpeg",
"-y",
"-i",
str(video_path),
"-an",
"-movflags",
"+faststart",
"-pix_fmt",
"yuv420p",
"-c:v",
"libx264",
str(normalized_path),
],
cwd=work_dir,
)
return normalized_path
def read_video_metadata(video_path: Path) -> VideoMetadata:
ffprobe_metadata = _read_video_metadata_ffprobe(video_path)
if ffprobe_metadata is not None:
return ffprobe_metadata
capture = cv2.VideoCapture(str(video_path))
if not capture.isOpened():
raise RuntimeError(f"Failed to open video: {video_path}")
fps = float(capture.get(cv2.CAP_PROP_FPS) or 0.0)
frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT) or 0)
width = int(capture.get(cv2.CAP_PROP_FRAME_WIDTH) or 0)
height = int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT) or 0)
capture.release()
if frame_count <= 0 or width <= 0 or height <= 0:
raise RuntimeError("Video metadata could not be read from the uploaded file.")
if fps <= 0:
fps = 24.0
return VideoMetadata(
fps=fps,
frame_count=frame_count,
duration_seconds=frame_count / fps,
width=width,
height=height,
)
def _resize_max_edge(frame: np.ndarray, max_edge: int) -> np.ndarray:
height, width = frame.shape[:2]
current_max = max(height, width)
if current_max <= max_edge:
return frame
scale = max_edge / current_max
new_size = (max(2, int(round(width * scale))), max(2, int(round(height * scale))))
return cv2.resize(frame, new_size, interpolation=cv2.INTER_AREA)
def _compute_histogram(frame: np.ndarray) -> np.ndarray:
hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)
hist = cv2.calcHist([hsv], [0, 1], None, [16, 16], [0, 180, 0, 256])
cv2.normalize(hist, hist)
return hist
def _compute_thumb(gray_frame: np.ndarray) -> np.ndarray:
thumb = cv2.resize(gray_frame, THUMB_SIZE, interpolation=cv2.INTER_AREA)
return thumb.astype(np.float32) / 255.0
def extract_candidates(
video_path: Path,
metadata: VideoMetadata,
candidates_dir: Path,
target_frames: int,
max_image_edge: int,
profile: ProfileConfig,
) -> list[FrameCandidate]:
desired_candidates = min(max(target_frames * profile.candidate_multiplier, target_frames + 8), 240)
stride = max(1, metadata.frame_count // desired_candidates)
capture = cv2.VideoCapture(str(video_path))
if not capture.isOpened():
raise RuntimeError(f"Failed to open video for frame extraction: {video_path}")
candidates: list[FrameCandidate] = []
frame_index = 0
candidate_index = 0
previous_hist: np.ndarray | None = None
previous_thumb: np.ndarray | None = None
while True:
ok, frame = capture.read()
if not ok:
break
if frame_index % stride != 0:
frame_index += 1
continue
frame = _resize_max_edge(frame, max_image_edge)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
blur_score = float(cv2.Laplacian(gray, cv2.CV_32F).var())
thumb = _compute_thumb(gray)
hist = _compute_histogram(frame)
motion_score = float(np.mean(np.abs(thumb - previous_thumb))) if previous_thumb is not None else 0.0
cut_score = (
float(cv2.compareHist(previous_hist, hist, cv2.HISTCMP_BHATTACHARYYA))
if previous_hist is not None
else 0.0
)
output_path = candidates_dir / f"candidate_{candidate_index:04d}.jpg"
cv2.imwrite(str(output_path), frame, [int(cv2.IMWRITE_JPEG_QUALITY), JPEG_QUALITY])
candidates.append(
FrameCandidate(
candidate_index=candidate_index,
frame_index=frame_index,
timestamp_seconds=frame_index / metadata.fps,
path=output_path,
blur_score=blur_score,
motion_score=motion_score,
cut_score=cut_score,
thumb=thumb,
)
)
previous_hist = hist
previous_thumb = thumb
candidate_index += 1
frame_index += 1
capture.release()
if len(candidates) < max(8, target_frames // 2):
raise RuntimeError(
f"Video yielded only {len(candidates)} usable candidates; upload a longer or slower video."
)
return candidates
def segment_candidates(candidates: list[FrameCandidate], profile: ProfileConfig) -> list[list[FrameCandidate]]:
if not candidates:
return []
segments: list[list[FrameCandidate]] = []
start = 0
for index in range(1, len(candidates)):
if candidates[index].cut_score >= profile.cut_threshold:
segments.append(candidates[start:index])
start = index
segments.append(candidates[start:])
return [segment for segment in segments if segment]
def choose_best_segment(
segments: list[list[FrameCandidate]],
target_frames: int,
profile: ProfileConfig,
) -> list[FrameCandidate]:
if not segments:
raise RuntimeError("No coherent video segment was found for reconstruction.")
scored_segments: list[tuple[float, list[FrameCandidate]]] = []
for segment in segments:
duration = segment[-1].timestamp_seconds - segment[0].timestamp_seconds if len(segment) > 1 else 0.0
median_blur = float(np.median([candidate.blur_score for candidate in segment]))
coverage_bonus = min(len(segment) / max(target_frames, 1), 1.5)
segment_penalty = 0.0 if len(segment) >= profile.min_segment_frames else 0.6
score = (duration + len(segment) * 0.12) * coverage_bonus * math.log1p(max(median_blur, 1.0)) - segment_penalty
scored_segments.append((score, segment))
scored_segments.sort(key=lambda item: item[0], reverse=True)
return scored_segments[0][1]
def select_keyframes(
segment: list[FrameCandidate],
target_frames: int,
profile: ProfileConfig,
) -> list[FrameCandidate]:
if len(segment) <= target_frames:
return segment
blur_scores = np.array([candidate.blur_score for candidate in segment], dtype=np.float32)
blur_threshold = float(np.percentile(blur_scores, profile.min_blur_percentile))
normalized_blur = blur_scores / max(float(blur_scores.max()), 1e-6)
motion = np.array([0.0] + [max(candidate.motion_score, 1e-6) for candidate in segment[1:]], dtype=np.float32)
cumulative_motion = np.cumsum(motion)
selected_indices: list[int] = []
neighborhood = max(2, len(segment) // max(target_frames * 2, 1))
if float(cumulative_motion[-1]) <= 1e-5:
marks = np.linspace(0, len(segment) - 1, target_frames)
mark_distances = np.arange(len(segment), dtype=np.float32)
else:
marks = np.linspace(float(cumulative_motion[0]), float(cumulative_motion[-1]), target_frames)
mark_distances = cumulative_motion
for mark in marks:
center = int(np.searchsorted(mark_distances, mark))
best_index: int | None = None
best_score = float("inf")
min_allowed = selected_indices[-1] + 1 if selected_indices else 0
lower = max(min_allowed, center - neighborhood)
upper = min(len(segment), center + neighborhood + 1)
search_ranges = [(lower, upper), (min_allowed, len(segment))]
for range_start, range_end in search_ranges:
for idx in range(range_start, range_end):
candidate = segment[idx]
mark_penalty = abs(float(mark_distances[idx]) - float(mark))
blur_penalty = 0.25 if candidate.blur_score < blur_threshold else 0.0
spacing_penalty = 0.15 if selected_indices and idx - selected_indices[-1] < 2 else 0.0
sharpness_bonus = 0.08 * float(normalized_blur[idx])
score = mark_penalty + blur_penalty + spacing_penalty - sharpness_bonus
if score < best_score:
best_score = score
best_index = idx
if best_index is not None:
break
if best_index is not None and (not selected_indices or best_index > selected_indices[-1]):
selected_indices.append(best_index)
selected_indices = sorted(set(selected_indices))
if len(selected_indices) < target_frames:
remaining = [idx for idx in range(len(segment)) if idx not in selected_indices]
remaining.sort(
key=lambda idx: (
-segment[idx].blur_score,
-(min(abs(idx - chosen) for chosen in selected_indices) if selected_indices else float("inf")),
)
)
for idx in remaining:
if len(selected_indices) >= target_frames:
break
selected_indices.append(idx)
selected_indices.sort()
trimmed = selected_indices[:target_frames]
return [segment[idx] for idx in trimmed]
def export_selected_images(scene_dir: Path, selected_frames: list[FrameCandidate]) -> list[Path]:
images_dir = _ensure_dir(scene_dir / "images")
exported: list[Path] = []
for index, candidate in enumerate(selected_frames):
destination = images_dir / f"frame_{index:04d}.jpg"
shutil.copy2(candidate.path, destination)
exported.append(destination)
return exported
def run_colmap(scene_dir: Path, selected_count: int, profile: ProfileConfig, max_image_edge: int) -> Path:
_require_binary("colmap")
database_path = scene_dir / "database.db"
images_dir = scene_dir / "images"
sparse_dir = _ensure_dir(scene_dir / "sparse")
_run(
[
"colmap",
"feature_extractor",
"--database_path",
str(database_path),
"--image_path",
str(images_dir),
"--ImageReader.single_camera",
"1",
"--ImageReader.camera_model",
"SIMPLE_RADIAL",
"--SiftExtraction.use_gpu",
"0",
"--SiftExtraction.max_image_size",
str(max_image_edge),
],
cwd=scene_dir,
)
_run(
[
"colmap",
"sequential_matcher",
"--database_path",
str(database_path),
"--SiftMatching.use_gpu",
"0",
"--SequentialMatching.overlap",
str(min(profile.sequential_overlap, max(selected_count - 1, 1))),
"--SequentialMatching.quadratic_overlap",
"1",
"--SequentialMatching.loop_detection",
"0",
],
cwd=scene_dir,
)
_run(
[
"colmap",
"mapper",
"--database_path",
str(database_path),
"--image_path",
str(images_dir),
"--output_path",
str(sparse_dir),
"--Mapper.multiple_models",
"0",
"--Mapper.extract_colors",
"0",
"--Mapper.min_model_size",
str(min(8, max(selected_count // 3, 4))),
],
cwd=scene_dir,
)
model_dirs = sorted(path for path in sparse_dir.iterdir() if path.is_dir())
if not model_dirs:
raise RuntimeError("COLMAP did not produce a sparse reconstruction.")
return model_dirs[0]
def count_registered_images(model_dir: Path) -> int:
image_bin = model_dir / "images.bin"
image_txt = model_dir / "images.txt"
if image_bin.exists():
with image_bin.open("rb") as handle:
header = handle.read(8)
return int(struct.unpack("<Q", header)[0]) if header else 0
if image_txt.exists():
lines = [line.strip() for line in image_txt.read_text(encoding="utf-8").splitlines()]
payload = [line for line in lines if line and not line.startswith("#")]
return len(payload) // 2
return 0
def quality_label(registered_frames: int, selected_frames: int) -> str:
if selected_frames <= 0:
return "unknown"
ratio = registered_frames / selected_frames
if ratio >= 0.85:
return "strong"
if ratio >= 0.6:
return "usable"
return "weak"
def create_contact_sheet(selected_frames: list[FrameCandidate], output_path: Path) -> Path:
if not selected_frames:
raise RuntimeError("No selected frames were available for the contact sheet.")
thumbs: list[np.ndarray] = []
for candidate in selected_frames:
image = cv2.imread(str(candidate.path), cv2.IMREAD_COLOR)
if image is None:
continue
image = _resize_max_edge(image, 320)
overlay = image.copy()
label = f"{candidate.timestamp_seconds:0.2f}s | blur {candidate.blur_score:0.0f}"
cv2.rectangle(overlay, (0, 0), (image.shape[1], 32), (12, 18, 28), -1)
image = cv2.addWeighted(overlay, 0.72, image, 0.28, 0.0)
cv2.putText(image, label, (10, 22), FONT, 0.55, (230, 235, 240), 1, cv2.LINE_AA)
thumbs.append(image)
cols = min(4, len(thumbs))
rows = int(math.ceil(len(thumbs) / cols))
cell_height = max(image.shape[0] for image in thumbs)
cell_width = max(image.shape[1] for image in thumbs)
canvas = np.full((rows * cell_height, cols * cell_width, 3), 18, dtype=np.uint8)
for index, image in enumerate(thumbs):
row = index // cols
col = index % cols
y = row * cell_height
x = col * cell_width
canvas[y : y + image.shape[0], x : x + image.shape[1]] = image
cv2.imwrite(str(output_path), canvas, [int(cv2.IMWRITE_JPEG_QUALITY), 92])
return output_path
def write_report(
scene_dir: Path,
metadata: VideoMetadata,
selected_frames: list[FrameCandidate],
registered_frames: int,
profile_key: str,
max_image_edge: int,
) -> Path:
report = {
"scene_name": scene_dir.name,
"video": {
"fps": metadata.fps,
"frame_count": metadata.frame_count,
"duration_seconds": metadata.duration_seconds,
"width": metadata.width,
"height": metadata.height,
},
"selection": {
"profile": profile_key,
"max_image_edge": max_image_edge,
"selected_frames": len(selected_frames),
"registered_frames": registered_frames,
"quality_label": quality_label(registered_frames, len(selected_frames)),
},
"frames": [
{
"filename": f"images/frame_{index:04d}.jpg",
"timestamp_seconds": candidate.timestamp_seconds,
"source_frame_index": candidate.frame_index,
"blur_score": candidate.blur_score,
"motion_score": candidate.motion_score,
"cut_score": candidate.cut_score,
}
for index, candidate in enumerate(selected_frames)
],
}
report_path = scene_dir / "report.json"
report_path.write_text(json.dumps(report, indent=2), encoding="utf-8")
return report_path
def build_archive(scene_dir: Path, output_archive: Path) -> Path:
package_dir = _unique_dir(WORK_DIR, "package")
scene_package = _ensure_dir(package_dir / scene_dir.name)
shutil.copytree(scene_dir / "images", scene_package / "images")
shutil.copytree(scene_dir / "sparse", scene_package / "sparse")
report_path = scene_dir / "report.json"
if report_path.exists():
shutil.copy2(report_path, scene_package / "report.json")
with zipfile.ZipFile(output_archive, "w", compression=zipfile.ZIP_DEFLATED) as archive:
for path in sorted(scene_package.rglob("*")):
if path.is_file():
archive.write(path, path.relative_to(package_dir))
return output_archive
def convert_video_to_colmap_archive(
video_path: str | Path,
target_frames: int,
profile_key: str,
max_image_edge: int,
) -> ConversionOutputs:
if profile_key not in PROFILES:
raise ValueError(f"Unknown sampling profile: {profile_key}")
source_path = Path(video_path)
if not source_path.exists():
raise FileNotFoundError(f"Input video not found: {source_path}")
job_dir = _unique_dir(WORK_DIR, "video-job")
normalized_path = normalize_video_input(source_path, job_dir)
metadata = read_video_metadata(normalized_path)
profile = PROFILES[profile_key]
candidates_dir = _ensure_dir(job_dir / "candidates")
candidates = extract_candidates(
video_path=normalized_path,
metadata=metadata,
candidates_dir=candidates_dir,
target_frames=target_frames,
max_image_edge=max_image_edge,
profile=profile,
)
segment = choose_best_segment(segment_candidates(candidates, profile), target_frames, profile)
selected = select_keyframes(segment, target_frames, profile)
scene_name = f"{_slugify(source_path.stem)}-{_now_ms()}"
scene_dir = _ensure_dir(job_dir / scene_name)
export_selected_images(scene_dir, selected)
model_dir = run_colmap(scene_dir, len(selected), profile, max_image_edge)
registered_frames = count_registered_images(model_dir)
report_path = write_report(scene_dir, metadata, selected, registered_frames, profile_key, max_image_edge)
output_stem = f"{scene_name}-{profile_key}-{len(selected)}"
contact_sheet_path = create_contact_sheet(selected, OUTPUTS_DIR / f"{output_stem}.jpg")
archive_path = build_archive(scene_dir, OUTPUTS_DIR / f"{output_stem}.zip")
output_report_path = OUTPUTS_DIR / f"{output_stem}.report.json"
shutil.copy2(report_path, output_report_path)
return ConversionOutputs(
archive_path=archive_path,
report_path=output_report_path,
contact_sheet_path=contact_sheet_path,
scene_name=scene_name,
selected_frames=len(selected),
registered_frames=registered_frames,
duration_seconds=metadata.duration_seconds,
quality_label=quality_label(registered_frames, len(selected)),
)
|