Whooaa !
I was thinking that this post would have already mentionned
@Bill Blanshan but this is not the case
As long as you are not in linear phase you have several point to reconsider for recombination, you can go for several directions with pros and cons on the final result
Luckily, we have someone in our community who has deep dived this subject and who has a huge knowledge of Pixel Math : BIll Blanshan
He has defined a set of PixelMath formula which are the equivalent of script or processes, there are very easy to use and you can can look at the formula and its videos if you want to understand what can be done (which I highly recommend, it is always better when you understand ^^); his formulas includes 4 ways to blend / add the images
go and see there, for me, it is a must if you are a PixInsight user :
https://www.youtube.com/channel/UCtxCDfyRToNx2s147fO2lxA/aboutAnd regarding the various discussions on StarXterminator / starnet and what is the star-only version, here what I can say :
- the process has been trained to create a starless image, period
- with that image, you can produce a star_only image which is :
A) the arithmetic difference : Image - StarlessImage
This is very usefull in linear phase but has limits because the star profile is then depending on the profil of the starless image
To be more precise, in linear, because the process is working only in non linear, when you click on "linear image" for a starless imagen the process is doing the following :
- automatic stretch of the image
- creation of starless image
- automatic "un stretch" of the starless image with inverse parameter of the initial automatic stretch
- arithmetic difference of the Image minus starless
B) you can try others formula such as a one wihch maintain the star profile, this is the "unscreen"
this is where you end up with another formula (the same that is used in StarXterminator for the unscreen feature)
All this is explained very well with the associated formulas in Bill vidéo, for the star shape, you will find this in another video :
https://www.youtube.com/watch?v=rM3-yAcAbZc&t=0s (screen shot at 15'20")

you end up with the "unscreen" formula which is : ~(~Image/~StarlessImage)
these "star_only" image are just various possibilities based on the image and the starlessimage
Personnaly, in non-linear, for my "quick work" I used a simple addition with unscreen stars but I perform an un-stretch before and then I re-stretch, this allows to avoid clipping.
This is very quick and It is enough when you don't touch too much the luminance : for exemple you separate, you perform a sharpening on the starless image and then you recombine
Instead of "Starless + Stars_only" you do something like :
mtf(0.001, (mtf(0.999, Starless) + mtf(0.999, Stars_Only)))
You just need to stretch in the complementary of the value you used for the "destretch", you could use :
mtf(~x, (mtf(x, Starless) + mtf(x, Stars_Only)))
where x = 0.999
If I want to do something more elaborate, I use Bill pixelmath ;-)
Clear skies