Hacker News new | ask | show | jobs
by dr_zoidberg 2227 days ago
Well I never formalized it in library or code that has survived to this day. But in a general sense, what you do is load your images as raw as you're comfortable working with them, and then define a pipeline that can:

* Stack or integrate: this means turning 100 high-noise images into a single, low noise image. To do that, you need:

* Registration or alignment: this is simply making sure that the stars are placed consistently on the same (x, y) location so that when you stack you don't get trails or blurring. High quality registration can go as far as sharpening your end result if you manage sub-pixel alignment (or you can strecth for super-resolution).

* Post-processing: it can be anything from removing light pollution (important if you're shooting from within a city), remove gradients (airglow, or residual light pollution even if you are far away from a city), sharpening (Lucy-Richardson deconvolution is king here using gaussian kernels, but if you can aproximate a Point Spread Function -or PSF for short- you can get even better results), color correction, high dynamic range processing. Of course, this is an un-ending place.

PixInsight is a great tool, I won't deny that. But I had a great joy in learning how to program this things, and to me it's a lot more interesting researching how to do something, learning it and programming it, rather than having it done by somebody else, clicking a button and moving away.

Luckily for both you and I, Bennedict Bitterli has written a C++ pipeline for processing with great detail that covers registration, stacking and removing gradients. That's a great read that you can find here[0]. You can still visit /r/astrophotography and treat yourself to the wiki if you want something more down to earth and with less programming involved.

The one thing most redditors there forget is that AP, on a budget, can be as fun (and frustrating too!) as throwing thousands of dolars worth of equipment to the problem. If you have a DSLR (new or old, or a mirrorless, or a compact camera, even some phones have good enough cameras) and a tripod you can do widefield astrophotography.

[0] https://benedikt-bitterli.me/astro/

Edited: fixed a few typos