Skip to main content

GraXpert is an astronomical image processing program for extracting and removing gradients in the background of your astrophotos

Reason this release was yanked:

test build

Project description

WARNING: This is a test branch/pip build, you probably don't want it yet.

For the time being you a re better off with the install images from the graxpert homepage! for questions regarding this test build contact kevinh@geeksville.com.

GraXpert is an astronomical image processing program for extracting and removing gradients in the background of your astrophotos. We provide several methods traditional interpolation methods such as Radial Basis Functions (RBF), Splines and Kriging which require the user to manually select sample points in the background of the image. Our newest addition is an AI method which does not require any user input.

Original Gradients removed with AI
Original Gradients removed
Original Gradients removed

Homepage: https://www.graxpert.com
Download: https://github.com/Steffenhir/GraXpert/releases/latest

Cross-Platform Installation

We are currently testing an optional cross-platform system for installing graxpert - which allows much smaller installation images and automated download/updates.

We do this via the the python pypi.org repository 'app-store.' This is particularly important if you'd like to have GPU acceleration support for non Nvidia GPUs. To install via this mechanism:

  1. Install python runtime for your OS. The default install should automatically include the python package manager 'pip'.
  2. At a shell prompt type the correct flavor of graxpert to install for your needs.

FIXME, recommend directml for windows, FIXME for linux and FIXME for mac

  • pip install graxpert[cuda] - Use this if you have an Nvidia GPU
  • pip install graxpert[rocm] - Use this if you have an AMD GPU
  • pip install graxpert[openvino] - Use this if you don't have an advanced GPU or don't know what you have (provides sizable acceleration on most modern Intel CPUs)
  • pip install graxpert[directml] - Use this if you want the Windows DirectML acceleration (not as fast as the options above but widely supported and easy to install)
  • pip install graxpert[cpuonly] - If you encounter bugs with any of our GPU versions, please file a bug and temporarily use this version (which excludes all GPU code)

If you are an advanced python user and know about the 'pipx' tool, we recommend that you use that tool instead of pip for installs.

Legacy Installation

You can download the latest official release of GraXpert here. Select the correct version for your operating system. For macOS, we provide different versions for Intel processors (x86_64) and for apple silicon (arm64).

Windows: After downloading the .exe file, you should be able to start it directly.
Linux: Before you can start GraXpert, you have to make it executable by running chmod u+x ./GraXpert-linux
macOS: After opening the .dmg file, simply drag the GraXpert icon into the applications folder. GraXpert can now be started from the applications folder.

Command-Line Usage

GraXpert comes with a graphical user interface. However, the AI method which does not need the selection of any background sample points can also be executed from the command line. Here are the available command-line arguments and their descriptions:

  • -cmd [image_operation]: This flag indicates which AI model to use. Options are "background-extraction" (default) or "denoising".
  • filename: The path of the unprocessed image (required).
  • -output [output_file_name]: Specify the name of the output image (without file ending). Otherwise the image will be saved with the suffix '_GraXpert' added to the original file name.
  • -preferences_file: Allows GraXpert commandline to run all extraction methods based on a preferences file that contains background grid points.
  • -gpu: Set to 'false' in order to disable gpu acceleration during AI inference, otherwise set to 'true' to enable it.
  • -ai_version [version]: Specify the version of the AI model to use. If not provided, it defaults to the latest available version. You can choose from locally available versions and remotely available versions.

Specific commands to each operation:

Background Extraction:

  • -correction [type]: Select the background correction method. Options are "Subtraction" (default) or "Division."
  • -smoothing [strength]: Adjust the strength of smoothing, ranging from 0.0 (no smoothing) to 1 (maximum smoothing).
  • -bg: Also save the generated background model.

Denoising:

  • -strength [value]: Adjust the strength of denoising, ranging from 0.0 (minimum) to 1 (maximum). Default: "0.5".
  • -batch_size [value]: Number of image tiles which Graxpert will denoise in parallel. Be careful: increasing this value might result in out-of-memory errors. Valid Range: 1..32, default: "4".

Examples

The following examples show how GraXpert can be used from the command line in Windows. For Linux and macOS, you have to do the following replacements:

Linux: Replace GraXpert-win64.exe by GraXpert-linux
macOS: Replace GraXpert-win64.exe by GraXpert.app/Contents/MacOS/GraXpert

Basic Usage:

GraXpert-win64.exe my_image.fits

Specify AI Model Version '1.1', correction type 'Division', smoothing '0.1', and save background model:

GraXpert-win64.exe my_image.fits -ai_version 1.1 -correction Division -smoothing 0.1 -bg

Installation for Developers

This guide will help you get started with development of GraXpert on Windows, Linux, and macOS. Follow these steps to clone the repository, create a virtual environment with Python, install the required packages, and run GraXpert from the source code.

Clone the repository

Open your terminal or command prompt and use git to clone the GraXpert repository:

git clone https://github.com/Steffenhir/GraXpert
cd GraXpert

Option 1: Manual developer environment setup

Setup the Virtual Environment

We recommend using a virtual environment to isolate the project's dependencies. Ensure you have Python>=3.10 installed on your system before proceeding. Here's how to set up a virtual environment with Python: Windows:

# Create a new virtual environment with Python 3.10
python -m venv graxpert-env

# Activate the virtual environment
graxpert-env\Scripts\activate

Linux and macOS:

# Create a new virtual environment with Python 3.10
python3 -m venv graxpert-env

# Activate the virtual environment
source graxpert-env/bin/activate

Install required packages

All the requirements can be found in the requirements.txt file. You can install them with:

Windows and Linux:

pip install -r requirements.txt

macOS:

pip3 install -r requirements.txt

"""
For macOS, we have to install tkinter separately.
We use the version provided by brew because it is newer
and solves issues with macOS Sonoma. Please use the version matching with your Python version.
"""
brew install python-tk@3.10

Option 2: Automatic setup with devcontainers

This project includes an (optional) devcontainer configuration. If you are using any editor with built-in devcontainer support (i.e. VScode or jetbrains etc...), you should get prompted to "Reopen in a devcontainer?"

If you choose to use a devcontainer a docker (or podman) based container environment will be created for your development. This environment appears to be a Debian machine (regardless of your host-OS). All windowing/file/network operations are forwarded through your host.

This provides a nice 'guaranteed' repeatable build/debug environment for all developers.

Running GraXpert

Once you have set up the virtual environment (using either of the options above), you can start GraXpert in your shell:

python -m graxpert.main

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graxpert-3.2.0a0.dev4.tar.gz (8.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

graxpert-3.2.0a0.dev4-py3-none-any.whl (3.4 MB view details)

Uploaded Python 3

File details

Details for the file graxpert-3.2.0a0.dev4.tar.gz.

File metadata

  • Download URL: graxpert-3.2.0a0.dev4.tar.gz
  • Upload date:
  • Size: 8.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for graxpert-3.2.0a0.dev4.tar.gz
Algorithm Hash digest
SHA256 9428659205eeb8fa710ae7435e50c997dfe1a48f2b4da9fd0451d2877c4fecc4
MD5 e6e1c96cac5aa9d3aed9298ead3b5bb4
BLAKE2b-256 4f338f7745368fc1bc859e9847b918f075589719f5d4d5fd012a45b6aa5f3678

See more details on using hashes here.

File details

Details for the file graxpert-3.2.0a0.dev4-py3-none-any.whl.

File metadata

File hashes

Hashes for graxpert-3.2.0a0.dev4-py3-none-any.whl
Algorithm Hash digest
SHA256 3eb6521e0d6e14fdb636aaba778cf7bba4f692f721ad9ae2fb31ed386a7dcef7
MD5 83908a3f587a88db986b0ab62018a365
BLAKE2b-256 91f5cc627e4579320caa23826e8f8cc204854589715a84911f6958323359eb39

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page