- Complete rewrite with beautiful Rich TUI interface - Interactive and CLI modes for flexibility - Robust error handling with clear, helpful messages - Gap filling with linear interpolation support - Coordinate system transforms (pixels/normalized) - Auto-generated output filenames from input - Configurable resolution and Nuke versions - Batch processing support via CLI - Comprehensive documentation in Scripts/README_CONVERTER.md - Updated main README.md with Scripts section
20 lines
417 B
Python
20 lines
417 B
Python
"""
|
|
Timer context manager, only used in debug.
|
|
|
|
"""
|
|
|
|
from time import time
|
|
|
|
import contextlib
|
|
from typing import Generator
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def timer(subject: str = "time") -> Generator[None, None, None]:
|
|
"""print the elapsed time. (only used in debugging)"""
|
|
start = time()
|
|
yield
|
|
elapsed = time() - start
|
|
elapsed_ms = elapsed * 1000
|
|
print(f"{subject} elapsed {elapsed_ms:.1f}ms")
|