About removing hotpixels... what about this?
- With PixelMath, create a mask that includes only hot pixels: $target[0] == 1 || $target[1] == 1 || $target[2] == 1 (this expression selects overexposed pixels too, but we could either live with that or refine it)
- Having the mask active, apply a convolution with the following 3x3 kernel: [ 1, 1, 1, 1, 0, 1, 1, 1, 1 ].
What I'm trying to do is substitute every hot pixel with an average of its surrounding pixels. How do you think this (untested) method would compare to using the CloneStamp tool?
--
Or, alternatively, in an oversampled image like that, why not just remove the first wavelet layer?