mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix(colorize): use user-friendly model labels (Fast/Balanced/Best)
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user