スキル一覧に戻る
ljchg12-hue

image-enhancement

by ljchg12-hue

Claude Code CLI configuration with multi-AI orchestration and ABSOLUTE RULES enforcement

0🍴 0📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: image-enhancement description: Enhance image quality using upscaling, denoising, color correction, and AI-powered tools

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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です