Author Topic: Synthetic Green Channel  (Read 8841 times)

Offline Redshift

  • PixInsight Enthusiast
  • **
  • Posts: 83
Synthetic Green Channel
« on: 2011 January 21 06:17:33 »
Hi,

Is it possible to make a Synthetic Green Channel from Ha and OIII date in PI, so I can make a BiColour Image?

I've been playing around with PixelMaths for a few hours but I'm not getting anywhere.

Thanks

Dave


Offline Andres.Pozo

  • PTeam Member
  • PixInsight Padawan
  • ****
  • Posts: 927
Re: Synthetic Green Channel
« Reply #1 on: 2011 January 21 09:21:06 »
I don't know where do you want to get  ;) ;) but with Pixel Math is easy to get a green channel mixing other channels. Please watch the attached screen capture: using PixelMath I got an RGB image with a green channel composed of 66% Ha and 33% O3. After this, I applied a BackgroundNeutralization, a ColorCalibration and a STF.

Offline Nocturnal

  • PixInsight Jedi Council Member
  • *******
  • Posts: 2727
    • http://www.carpephoton.com
Re: Synthetic Green Channel
« Reply #2 on: 2011 January 21 09:24:18 »
I assume you want to create a TRIcolor image then, right? :) I don't see the appeal of sticking R and B values into G but I know it's commonly done. Pixelmath is the way to do it. Which formulas have you tried? More importantly, what are you trying to do? You can't -create- Green afterall. The best you can do is mathematically combine R and B which means the signal in G is essentially the same as in R and B. Anyway, what formula do you want to use? Which PM formulas have you tried?
Best,

    Sander
---
Edge HD 1100
QHY-8 for imaging, IMG0H mono for guiding, video cameras for occulations
ASI224, QHY5L-IIc
HyperStar3
WO-M110ED+FR-III/TRF-2008
Takahashi EM-400
PIxInsight, DeepSkyStacker, PHD, Nebulosity

Offline Redshift

  • PixInsight Enthusiast
  • **
  • Posts: 83
Re: Synthetic Green Channel
« Reply #3 on: 2011 January 21 10:03:51 »
Andres and Sander,
Thank you for your replies. I'm trying to emulate Steve Cannistra's technique here http://www.starrywonders.com/bicolortechniquenew.html he uses Photoshop I was hoping to do it in PixInsight. Here is one of his images using the process http://www.starrywonders.com/rosettebicolor.html.

I've only tried the PixMaths process that Andres suggests using different weights for the Ha and OIII in the Synthetic Green channel.

Regards

Dave

Offline Nocturnal

  • PixInsight Jedi Council Member
  • *******
  • Posts: 2727
    • http://www.carpephoton.com
Re: Synthetic Green Channel
« Reply #4 on: 2011 January 21 10:36:52 »
Hmm, that technique sounds like alchemy and I don't subscribe to that :) Hopefully someone has translated all those PS operations into what's actually going on underwater so it can be written as PM or other processes. It'll take a careful read and understanding of what the PS layers really do.
Best,

    Sander
---
Edge HD 1100
QHY-8 for imaging, IMG0H mono for guiding, video cameras for occulations
ASI224, QHY5L-IIc
HyperStar3
WO-M110ED+FR-III/TRF-2008
Takahashi EM-400
PIxInsight, DeepSkyStacker, PHD, Nebulosity

Offline Redshift

  • PixInsight Enthusiast
  • **
  • Posts: 83
Re: Synthetic Green Channel
« Reply #5 on: 2011 January 21 13:07:41 »
Sander,

I like it  :) and he's turned out a good looking photograph.
Yes, what do the Screen and Multiply Layers etc do.

Dave

Offline Nigel Ball

  • PixInsight Addict
  • ***
  • Posts: 277
    • Astrophotography by Nigel
Re: Synthetic Green Channel
« Reply #6 on: 2011 January 21 14:53:30 »
Dave

The various PS blending modes can be implemented fairly easily in PixelMath once you know the formulae

Rogelio has a guide to PS Blending Modes on his website which I found very useful and was able to implement those I needed in PixelMath

Have a look at http://blog.deepskycolors.com/archivo/2010/04/21/formulas-for-Photoshop-blending-modes.html

HTH

Nigel

PS If you have problems with PixelMath just call .......  ;)
Nigel Ball
Nantwich, Cheshire, United Kingdom

Takahashi FSQ-106 at f/8, f/5 and f/3.6 on AP900, Nikon 28 mm and 180mm f/2.8
SBIG STL-11000M, Astrodon LRGB, 5nm Ha
ST-10XME, Astrodon HaLRGB
www.nigelaball.com

Offline Redshift

  • PixInsight Enthusiast
  • **
  • Posts: 83
Re: Synthetic Green Channel
« Reply #7 on: 2011 February 02 00:54:00 »
Nigel,

Thank you, I've just seen your message. I don't know how I missed it.

Regards

Dave

Offline dlp

  • Newcomer
  • Posts: 17
Re: Synthetic Green Channel
« Reply #8 on: 2011 February 19 08:56:21 »
I'm trying to use Pixel Math as per the formulae on the deep sky colors website listed above and am having a problem parsing a formula for 'soft light' :

if (blend > 1/2) R = 1 - (1-target) * (1-(blend-1/2))
if (blend <= 1/2) R = target * (blend+1/2)

Gives 'unknown function identifier'. I have my images named as 'blend' and 'target', and symbol 'R' just entered into the Symbols box.

Can anyone enlighten me please?

David

Offline oldwexi

  • PixInsight Guru
  • ****
  • Posts: 627
    • Astronomy Pages G.W.
Re: Synthetic Green Channel
« Reply #9 on: 2011 February 19 10:01:57 »
Hi David!
When i want to use the so called "Soft Light" function from PS in PI
i paste into PixelMath this formula:

iif(Blend > 0.5, 1-(1-Target)*(1-(Blend-0.5)), Target *(Blend+0.5))

The names of the images (layers) therefore are:
Blend and Target ....

Hope this helps
Gerald

Offline dlp

  • Newcomer
  • Posts: 17
Re: Synthetic Green Channel
« Reply #10 on: 2011 February 19 10:07:39 »
Thanks Gerald - worked a treat!