Hi Nigel,
That topic was already discussed here:
http://pixinsight.com/forum/index.php?topic=2298 and an older discusion is here as well
http://pixinsight.com/forum/index.php?topic=562.0In the first post, Jack explains how to create two new master channels which are subsets of the Red master channel and the Ha master channel. I'm explaining what I have read because it is not clear (sorry Jack!)
Suffice to say that he shot with 4 filters: Ha, R, G, and B. (notice no separate L.)
So say your narrow filter bandpass is 5nm
You create a new red channel where you remove the contribution from Ha
new_red = m_red - m_Ha
new_Ha = m_Ha - 0.05 * new_red
Finally a mix
red_channel = 0.6 * new_Ha + 0.4 * new_red, and you can play with the 0.6 and 0.4 coefficients.
Now get you color image with assembling
red_channel, m_green and m_blue
Well! I just found a new tutorial from Vicent Peris here about this
http://pixinsight.com/tutorials/narrowband/theory/en.htmlThere is also a tutorial about PixelMath but do not read the whole thing, it will make your head explode.
It is a complete tutorial with examples.
Skip to the "Merging Images" part. Near the end.