For the complete documentation index, see llms.txt. This page is also available as Markdown.

Key Concepts

The essential concepts behind VIESUS — one shared engine and configuration, how features are controlled, and GPU vs CPU.

A few concepts make the rest of the documentation straightforward. Expand any that's new to you.

One engine behind every product

Every VIESUS product is a wrapper around the same C++ enhancement library — image analysis, correction algorithms, AI models, and output logic all live there. The wrappers just change how you invoke it.

This matters in practice: prototype a configuration in the Viewer, then run it in production through the CLI or Node.js module, and you get identical results. Configure once, run anywhere.

For a side-by-side comparison of every interface, see Choose Your Interface. For direct library access, see the C/C++ SDK.

One configuration, every interface

All on-premise interfaces (CLI, PDF Enhancer, Node.js module, C/C++ SDK) read the same viesusini.json configuration file, with identical parameters. Tune a configuration in the VIESUS Viewer, export it, and use that exact file in production.

Each feature is controlled the same way: a mode that turns it on or off (and sometimes selects a variant), plus a strength from 0.0 to 1.0 that sets how strongly it's applied. Once you know that pattern, the whole Parameter Reference reads consistently.

┌─────────────────────────────────────┐
│  viesusini.json                      │
(your enhancement configuration)
└──────────────┬──────────────────────┘
               │ same file works with
       ┌───────┼───────────┐
       ▼       ▼           ▼
    CLI    PDF CLI     Node.js Module
GPU vs CPU, and optional AI features

VIESUS ships in two installer variants: GPU and CPU.

Variant
When to use

GPU installer

Systems with an NVIDIA GPU (Ampere architecture or newer, ≥ 8 GB VRAM). Enables full-speed AI features: AI upscaling, Artifact Removal, Background Handling.

CPU installer

Systems without a compatible NVIDIA GPU. All standard enhancement (color, sharpening, noise, faces) works normally. AI-heavy features (AI upscaling, Artifact Removal) run significantly slower.

The AI features — AI upscaling, Artifact Removal, and Background — are optional. On Windows each is a separate add-on installer and is unlocked only if your license includes it (on Linux the models are bundled in the main package). Standard enhancement is always included and runs on either variant.

See AI Add-ons for installing the AI models and Benchmarks for processing-time reference data.

Last updated

Was this helpful?