Starrem2k13, a simple open source tool for removing stars from deep sky images.
Try Online Demo
Run with Docker
Download for Windows
Download for Ubuntu 20/Linux
Download for MacOS
starrem2k13 image_with_stars.jpg starless.jpg
tar -xvzf starrem2k13_ubuntu_20.04.tar.gz
cd starrem2k13_ubuntu_20.04
chmod +777 starrem2k13
starrem2k13 image_with_stars.jpg starless.jpg
starrem2k13 image_with_stars.jpg starless.jpg
docker run -v $PWD:/usr/src/app/starrem2k13/data \
-it code2k13/starrem2k13 \
/bin/bash -c "./starrem2k13.py ./data/example.jpg ./data/example_starless.jpg"
Where can I find source code for this tool?
The source code is available here
I need help?
You can reach out to me on Twitter @patilsaheb
Why is the startup of the program so slow ?
I use PyInstaller to create executables from my Python
scripts. This tool basically creates a bundle with python, required dependencies, my scripts and
model weights. When it runs, it needs to unpackage everything , which takes time.
How can I perform batch star removal?
Checkout the simple shell
script from the project's repo. Since Starrem2k13 is a command-line utility,
it can be used in many different ways.