Skip to the content.

ChimpStackr is a free, open-source focus stacking application for Windows, macOS, and Linux. It merges a series of differently-focused photos into a single, fully-sharp image — with a full GUI and a headless CLI.

ChimpStackr main window

Features

Processing view

Download

Pre-built packages are on the Releases page:

Platform Download Notes
Windows ChimpStackr-Windows.zip Extract and run chimpstackr.exe
macOS ChimpStackr-macOS.dmg Open DMG, drag to Applications
Linux ChimpStackr-Linux-x86_64.AppImage chmod +x and run

CLI quickstart

Headless focus stacking, no GUI required:

# Basic stack
chimpstackr-cli --input images/*.jpg --output result.tif

# Align + stack with auto parameters
chimpstackr-cli -i images/*.jpg -o result.tif --align --auto --auto-crop

Available methods: laplacian (default), weighted_average, depth_map.

Stacks shot at ~4× magnification (~150 frames each), stacked with ChimpStackr and post-processed in darktable.

Stacked macro example 1 Stacked macro example 2 Stacked macro example 3

Documentation

Build from source

Requires Python 3.9–3.13.

git clone https://github.com/noah-peeters/ChimpStackr.git
cd ChimpStackr
python -m venv .venv
source .venv/bin/activate   # .venv\Scripts\activate on Windows
pip install -r requirements.txt
python src/run.py           # GUI
python -m src.cli --help    # CLI

License

GPL-3.0.