Photo Cinematic Editor

👤 akira362680164 📦 v1.0.0 ⭐ 4.3 ⬇️ 567 下載
🎨 設計多媒體 免費

📖 技能介紹


name: photo-cinematic description: "Professional photo processing and cinematic color grading powered by Pillow + NumPy. Use when a user asks to: (1) Edit, enhance, or retouch photos, (2) Apply cinematic/film color grading, (3) Remove haze or improve clarity, (4) Adjust saturation, vibrance, or exposure, (5) Add light effects, vignette, or film grain. Triggers on keywords like: 調色/修圖/照片處理/電影感/通透/去霧/飽和度/自然飽和度/色階。"


Photo Cinematic Editor

Cinematic photo processing toolkit with Pillow + NumPy. Supports HEIC/JPEG/PNG input.

Quick Start

# All-in-one cinematic processing (dehaze → grade → light → sharpen)
python3 scripts/photo_editor.py input.jpg output.jpg

# Custom pipeline
python3 scripts/photo_editor.py input.jpg output.jpg dehaze grade saturation=1.3 light sharpen

Effects Reference

Effect Params Description
dehaze strength=1.0 Local contrast dehazing + clarity
grade strength=1.0 Cinematic S-curve + teal/orange split tone + glow + vignette
saturation saturation=1.0 Simple saturation multiplier
vibrance vibrance=1.0 Smart saturation (boosts muted colors more)
levels shadows=0 midtones=1.0 highlights=255 Photoshop-style levels adjustment
light strength=1.0 Warm light streaks + highlight boost
sharpen strength=1.0 Unsharp mask sharpening
blur strength=1.0 Gaussian blur (radius in pixels)

All params accept strength=N to control intensity.

Usage Examples

# Dehaze only
python3 scripts/photo_editor.py photo.jpg out.jpg dehaze

# Cinematic from scratch
python3 scripts/photo_editor.py photo.jpg out.jpg grade

# Vibrant cinematic
python3 scripts/photo_editor.py photo.jpg out.jpg dehaze grade saturation=1.2 light sharpen

# Soft natural look
python3 scripts/photo_editor.py photo.jpg out.jpg dehaze grade vibrance=0.85 light=0.6 sharpen

# Manual levels adjustment
python3 scripts/photo_editor.py photo.jpg out.jpg levels shadows=15 midtones=1.1 highlights=240 sharpen

7w4.net提供免費和付費技能下載。

Requirements

pip3 install Pillow numpy pillow-heif --break-system-packages

Scripts

  • scripts/photo_editor.py — Main editor with pipeline processing
  • scripts/cinematic_grade.py — V1 classic cinematic grading
  • scripts/cinematic_v2.py — V2 with dehaze + light texture

References

See references/photo-editing-guide.md for technique explanations and advanced workflows.

🤖 AI 評測

這是一款功能豐富、調色效果專業的照片處理工具,去霧通透感和電影色調效果出色,操作直觀好上手。但主要擅長色調調整,其他修圖功能相對基礎;部分格式支援可能受限;缺少即時預覽,調整引數只能看最終結果。總體適合對色彩有較高要求的專業使用者,但日常簡單修圖可能不是最佳選擇。

📊 多維度評分

適應性4.3
規範性3.9
有效性4.4
可靠性4.2
可信度5

📁 包含檔案 (6 個)

📄 SKILL.md 2.5 KB
📄 _meta.json 134 B
📄 references/photo-editing-guide.md 2.3 KB
📄 scripts/cinematic_grade.py 5.9 KB
📄 scripts/cinematic_v2.py 7.3 KB
📄 scripts/photo_editor.py 7.8 KB