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";
|
type Model = "auto" | "ddcolor" | "opencv";
|
||||||
|
|
||||||
const MODEL_OPTIONS: { value: Model; label: string; desc: string }[] = [
|
const MODEL_OPTIONS: { value: Model; label: string; desc: string }[] = [
|
||||||
{ value: "auto", label: "Auto", desc: "Best available" },
|
{ value: "opencv", label: "Fast", desc: "Quick results" },
|
||||||
{ value: "ddcolor", label: "DDColor", desc: "SOTA deep learning" },
|
{ value: "auto", label: "Balanced", desc: "Best available" },
|
||||||
{ value: "opencv", label: "Classic", desc: "Fast, lightweight" },
|
{ value: "ddcolor", label: "Best", desc: "Highest quality" },
|
||||||
];
|
];
|
||||||
|
|
||||||
export function ColorizeSettings() {
|
export function ColorizeSettings() {
|
||||||
|
|||||||
Reference in New Issue
Block a user