UNPKG

pixteroid

Version:

Pixteroid is a Node.js API designed for efficient image upscaling and restoration, powered by AI and utilizing the NCNN framework. It employs Real-ESRGAN and ESRGAN model weights to upscale and restore images, providing three distinct levels of detail and

5 lines (4 loc) 294 B
type LevelOptions = "level1" | "level2" | "level3"; export declare function upscale(input: string, output: string, level: LevelOptions): Promise<boolean>; export declare function upscaleAll(inputs: string[], basePath: string, level: LevelOptions, batchSize?: number): Promise<void>; export {};