fix(colorize): use user-friendly model labels (Fast/Balanced/Best)

This commit is contained in:
stirling-image
2026-04-13 19:48:48 +08:00
parent c280076098
commit 61794dca2d
@@ -7,9 +7,9 @@ import { useFileStore } from "@/stores/file-store";
type Model = "auto" | "ddcolor" | "opencv";
const MODEL_OPTIONS: { value: Model; label: string; desc: string }[] = [
{ value: "auto", label: "Auto", desc: "Best available" },
{ value: "ddcolor", label: "DDColor", desc: "SOTA deep learning" },
{ value: "opencv", label: "Classic", desc: "Fast, lightweight" },
{ value: "opencv", label: "Fast", desc: "Quick results" },
{ value: "auto", label: "Balanced", desc: "Best available" },
{ value: "ddcolor", label: "Best", desc: "Highest quality" },
];
export function ColorizeSettings() {