Skip to content

Instantly share code, notes, and snippets.

View goodlux's full-sized avatar
🎬

Rob Kunkle goodlux

🎬
View GitHub Profile
@mq1n
mq1n / upscaler.py
Last active November 19, 2025 05:16
Topaz Photo AI CLI Sample with Python Automated Script & DDS Support
import os, sys, subprocess
try:
from wand.image import Image
except ImportError:
os.system('python -m pip install wand')
from wand.image import Image
def main(args):
if len(args) < 1:
print('Usage: upscaler.py <input_image> [output_image]')