feat: SOTA AI photo colorization with DDColor deep learning model (#57) (#58)

Add AI-powered photo colorization that converts B&W/grayscale images to
full color using DDColor (ICCV 2023 dual-decoder architecture) via ONNX
Runtime. Includes model selection (Auto/DDColor/Classic), adjustable color
intensity, batch processing, before/after preview, and full HEIC/HEIF support.

Co-authored-by: stirling-image <stirling-image@users.noreply.github.com>
This commit is contained in:
stirling-image
2026-04-13 19:40:55 +08:00
committed by GitHub
co-authored by stirling-image
parent 58cdbe50b4
commit c280076098
12 changed files with 690 additions and 0 deletions
+9
View File
@@ -177,6 +177,14 @@ export const TOOLS: Tool[] = [
icon: "Sparkles",
route: "/image-enhancement",
},
{
id: "colorize",
name: "AI Colorization",
description: "Convert B&W photos to full color with AI",
category: "ai",
icon: "Palette",
route: "/colorize",
},
// Watermark & Overlay
{
id: "watermark-text",
@@ -396,4 +404,5 @@ export const PYTHON_SIDECAR_TOOLS = [
"blur-faces",
"erase-object",
"ocr",
"colorize",
] as const;