Which expression should be used in PixelMath, for combining L and Ha image in 50:50 blending mode?
This is simplest way:
(L + Ha)/2A more generic formulation is of course:
0.5*L + 0.5*Hamainly because it provides the structure to implement different combining ratios, such as for example:
0.75*L + 0.25*HaYou can also define two symbols; for example:
a = 0.75, b = 0.25and rewrite the expression to use them instead of literal values:
a*L + b*Hawhich can be more manageable, especially if you're going to use more complex expressions.