Author Topic: Does HT highlight clipped pixels?  (Read 2643 times)

Offline blackdragon72

  • Newcomer
  • Posts: 24
Does HT highlight clipped pixels?
« on: 2014 January 10 12:24:16 »
I want to clip more pixels in the shadow when doing histogram transformation, but I can not find where those pixels are. They are not in the faint nebula since when I use readout, faintest pixels are far to the right. Is there any way to show the clipped pixels, and is it safe to clip them if not in the nebula?

Offline Carlos Milovic

  • PTeam Member
  • PixInsight Jedi Master
  • ******
  • Posts: 2172
  • Join the dark side... we have cookies
    • http://www.astrophoto.cl
Re: Does HT highlight clipped pixels?
« Reply #1 on: 2014 January 10 13:23:28 »
Clone the image, and use the Binarize process.
If it is scattered, random noise, sure, clip them.
Regards,

Carlos Milovic F.
--------------------------------
PixInsight Project Developer
http://www.pixinsight.com

Offline oldwexi

  • PixInsight Guru
  • ****
  • Posts: 627
    • Astronomy Pages G.W.
Re: Does HT highlight clipped pixels?
« Reply #2 on: 2014 January 10 13:26:52 »
Hi,
after HT with PixelMath:

iif($T==0,1,$T)   sets the clipped shadow Pixels to 1 and lets the rest unchanged, this makes them somehow better visible.
iif($T==0,1,0)     sets the clipped shadow Pixels to 1 and all others to Zero, so you can much better recognize them.

If you want to see it before and you move the shadow slider in HT to the right you see the number of pixels clipped AND
you see the value where your slider stands for clipping, for example at 0.0025745  (without executing it!)
then your PixelMath could be:
iif($T<0.0025745,1,0)   sets the clipped shadow Pixels which are darker as 0.0025745 to 1 and the rest to Zero, so you can much better recognize them.

Statistics also shows the darkest Pixel and the x,y coordinate of it, but only of this one Pixel...

Hope this helps

Gerald

Offline blackdragon72

  • Newcomer
  • Posts: 24
Re: Does HT highlight clipped pixels?
« Reply #3 on: 2014 January 10 20:19:44 »
Carlos,

It works.

Gerald,

I will note it down, since I am new to Pixinsight and have not used PixMatch yet.

Can this function be added to HT? It seems a very useful feature and should be easy to implement.