Presets Gallery
Ready-to-use VIESUS enhancement preset configurations for common workflows. Download a JSON, drop it in, run.
Last updated
Was this helpful?
Ready-to-use VIESUS enhancement preset configurations for common workflows. Download a JSON, drop it in, run.
Each preset is a ready-to-use viesusini.json tuned for a specific workflow. Download the JSON, pass it to VIESUS with the -p flag (CLI), point your Folder Enhancer at it, or load it into the Node.js module.
Start with a preset, then customise. The fastest way to get a working configuration is to take a preset close to your need and adjust the few parameters that matter for your case. The VIESUS Viewer lets you load a preset, preview its output, and tweak parameters interactively.
Standard automatic enhancement (color, contrast, brightness, sharpening, noise reduction)
No AI upscaling
vScene mode OFF
CPU-only — no GPU required
Same as Default, plus scene-aware enhancement
Per-scene tuning: Landscape, People, Night, Black & White, Beach, Snow, Sunset, etc.
CPU-only
4× AI upscaling
AI Artifacts Removal (JPEG compression cleanup)
AI Facial Reconstruction for natural high-res faces
vScene ON, full color correction
Requires GPU
4× upscaling without color correction
Use when input is already color-corrected upstream
Requires GPU
Removes background from portrait images
Saves as PNG with transparent alpha channel
No color correction or upscaling
Background removal plus full color correction
Saves as PNG with transparent alpha channel
Best for product photography and ID workflows
Each preset is a complete viesusini.json — every parameter is present, so you can drop it in and run as-is, or open it and tune just the values you care about. The AI presets (upscaling, background removal) require an NVIDIA GPU; see the hardware notes below.
The fastest workflow:
Load the JSON into the VIESUS Viewer, open a representative image, and preview the output.
For the full parameter reference, see Configuration → Parameters.
Pass the preset path with -p:
This enhances input.jpg and saves the result alongside it with the _viesus suffix. See the CLI Reference for all flags.
Place the preset in your watched folder's config directory, or point the Folder Enhancer settings at it. See PDF Enhancer Settings Reference for the analogous PDF workflow.
Load the JSON and pass the parsed object to the module:
See the Node.js API Reference for the full signature.
Last updated
Was this helpful?
Was this helpful?
viesus -p default.json -s -f input.jpgconst fs = require('fs');
const viesus = require('viesus');
const config = JSON.parse(fs.readFileSync('default.json', 'utf8'));
await viesus.enhance({ input: 'input.jpg', output: 'output.jpg', config });