It's been suggested several times that one could mix a portion of the blue channel into the green channel to virtually enhance the visibility of 405nm. It has also been suggested that this could be done for 445nm too, for those who dislike its deepness.
This could be done in software or in projector-hardware.
If you want to implement this, you roughly run into two issues:
Exactly what percentage is to be mixed into the green channel ?
What to do if the green channel is already saturated ?
I did a little reverse engineering and this is how a
Particular lasershow-software handles RGV colour mixing :
The software compares the Blue and Green channel.
If B is greater than G then 33% of the difference between B and G is added to the Green output-channel. If G is greater than B then both channels are unchanged.
Code:
if Bin<Gin then Bout=Bin ; Gout=Gin
if Bin>Gin then Bout=Bin ; Gout=Gin+0.33(Bin-Gin)