Skip to content

TimNekk/Gigapixel

Repository files navigation


Gigapixel
Gigapixel

Topaz Gigapixel AI automation tool

PyPI Python 3 Tests

RequirementsInstallationUsageContributingLicense

Requirements

Tested on Topaz Gigapixel AI v7.2.3

Installation

Install the latest version with PyPI

pip install -U gigapixel

Usage

from gigapixel import Gigapixel

gp = Gigapixel(r"C:\Program Files\Topaz Labs LLC\Topaz Gigapixel AI\Topaz Gigapixel AI.exe")

gp.process(r"path\to\image.jpg")

Additional parameters can be passed to process() method:

from gigapixel import Scale, Mode

gp.process(
  r"path\to\image.jpg",
  scale=Scale.X2,
  mode=Mode.STANDARD,
)

Warning! Using parameters (scale, mode) may take additional time to process single image. Consider using them only when needed. To get the best performance, use gp.process(r"path\to\image.jpg")

Contributing

Bug reports and/or pull requests are welcome

License

The module is available as open source under the terms of the Apache License, Version 2.0