1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 18:57:41 +01:00
upscayl/electron/utils/getArguments.ts

167 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-09-04 17:59:17 +02:00
import { getPlatform } from "../getDeviceSpecs";
2023-04-29 02:18:19 +02:00
const slash: string = getPlatform() === "win" ? "\\" : "/";
2023-03-18 13:15:48 +01:00
export const getSingleImageArguments = (
inputDir: string,
fullfileName: string,
outFile: string,
modelsPath: string,
model: string,
scale: any,
gpuId: string,
saveImageAs: string
2023-03-18 12:58:38 +01:00
) => {
2023-03-18 13:15:48 +01:00
return [
"-i",
2023-04-29 02:18:19 +02:00
inputDir + slash + fullfileName,
2023-03-18 13:15:48 +01:00
"-o",
outFile,
"-s",
2023-04-14 12:31:37 +02:00
scale,
2023-03-18 13:15:48 +01:00
"-m",
modelsPath,
"-n",
model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
saveImageAs,
];
};
export const getSingleImageSharpenArguments = (
inputDir: string,
fullfileName: string,
outFile: string,
modelsPath: string,
model: string,
scale: any,
gpuId: string,
saveImageAs: string
) => {
return [
"-i",
2023-04-29 02:18:19 +02:00
inputDir + slash + fullfileName,
2023-03-18 13:15:48 +01:00
"-o",
outFile,
"-s",
scale,
"-x",
"-m",
2023-04-29 02:18:19 +02:00
modelsPath + slash + model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
saveImageAs,
];
};
export const getDoubleUpscaleArguments = (
inputDir: string,
fullfileName: string,
outFile: string,
modelsPath: string,
model: string,
gpuId: string,
2023-04-14 12:31:37 +02:00
saveImageAs: string,
scale: string
2023-03-18 13:15:48 +01:00
) => {
return [
"-i",
2023-04-29 02:18:19 +02:00
inputDir + slash + fullfileName,
2023-03-18 13:15:48 +01:00
"-o",
outFile,
"-s",
2023-04-14 12:31:37 +02:00
scale,
2023-03-18 13:15:48 +01:00
"-m",
modelsPath,
"-n",
model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
saveImageAs,
];
};
export const getDoubleUpscaleSecondPassArguments = (
isAlpha: boolean,
outFile: string,
modelsPath: string,
model: string,
gpuId: string,
2023-04-14 12:31:37 +02:00
saveImageAs: string,
scale: string
2023-03-18 13:15:48 +01:00
) => {
return [
"-i",
isAlpha ? outFile + ".png" : outFile,
"-o",
isAlpha ? outFile + ".png" : outFile,
"-s",
2023-04-14 12:31:37 +02:00
scale,
2023-03-18 13:15:48 +01:00
"-m",
modelsPath,
"-n",
model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
isAlpha ? "" : saveImageAs,
];
};
export const getBatchArguments = (
inputDir: string,
outputDir: string,
modelsPath: string,
model: string,
gpuId: string,
2023-04-14 12:31:37 +02:00
saveImageAs: string,
scale: string
2023-03-18 13:15:48 +01:00
) => {
return [
"-i",
inputDir,
"-o",
outputDir,
"-s",
2023-04-14 12:31:37 +02:00
scale,
2023-03-18 13:15:48 +01:00
"-m",
modelsPath,
"-n",
model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
saveImageAs,
];
};
2023-04-14 12:31:37 +02:00
// ! REDUNDANT
2023-03-18 13:15:48 +01:00
export const getBatchSharpenArguments = (
inputDir: string,
outputDir: string,
modelsPath: string,
model: string,
gpuId: string,
2023-04-14 12:31:37 +02:00
saveImageAs: string,
scale: string
2023-03-18 13:15:48 +01:00
) => {
return [
"-i",
inputDir,
"-o",
outputDir,
"-s",
2023-04-14 12:31:37 +02:00
scale,
2023-03-18 13:15:48 +01:00
"-x",
"-m",
2023-04-29 02:18:19 +02:00
modelsPath + slash + model,
gpuId ? "-g" : "",
gpuId ? gpuId : "",
2023-03-18 13:15:48 +01:00
"-f",
saveImageAs,
];
2023-03-18 12:58:38 +01:00
};