Agent skill
image-enhancement
Enhance image quality using upscaling, denoising, color correction, and AI-powered tools
Install this agent skill to your Project
npx add-skill https://github.com/ljchg12-hue/dotfiles/tree/main/skills/image-enhancement
SKILL.md
Image Enhancement Skill
Improve image quality through upscaling, denoising, sharpening, and color correction.
When to Use
- Low-resolution images
- Noisy/grainy photos
- Poor lighting correction
- Professional photo editing
Core Capabilities
- AI upscaling (2x, 4x, 8x)
- Noise reduction
- Sharpening
- Color correction
- Contrast/brightness adjustment
- HDR enhancement
Tools
# ImageMagick
convert input.jpg -sharpen 0x1 -enhance output.jpg
# waifu2x (AI upscaling)
waifu2x-ncnn-vulkan -i input.jpg -o output.png -s 2
# Topaz Gigapixel AI
# Real-ESRGAN
realesrgan-ncnn-vulkan -i input.jpg -o output.jpg -s 4
Python (OpenCV)
import cv2
img = cv2.imread('input.jpg')
enhanced = cv2.detailEnhance(img, sigma_s=10, sigma_r=0.15)
cv2.imwrite('output.jpg', enhanced)
Best Practices
- Start with highest quality source
- Use AI upscaling for photos
- Adjust settings iteratively
- Compare before/after
- Batch process similar images
Resources
- waifu2x: https://github.com/nagadomi/waifu2x
- Real-ESRGAN: https://github.com/xinntao/Real-ESRGAN
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
random-selection
Randomly select items from lists using various algorithms for fair and unbiased selection
threat-hunting
Proactive threat detection using Sigma rules, IOCs, and behavioral analytics
auth-implementation-patterns
Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing APIs, or debugging security issues.
debugging-strategies
Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior.
sql-optimization-patterns
Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database schemas, or optimizing application performance.
monorepo-management
Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.
Didn't find tool you were looking for?