OT question:
I am merging (calculating the mean of) 16 short exposures of a night photo with high ISO in order to remove noise and get wonderful night shots.
Now I'm just averaging
pixelvalue = (photo1.pixelvalue + photo2.pixelvalue) / numPhotos
Is there a way to make this smarter with a bayesian approach? I'm thinking it couldmake a smarter guess what the actual pixelvalue should be rather than just the average.
Now I'm just averaging pixelvalue = (photo1.pixelvalue + photo2.pixelvalue) / numPhotos
Is there a way to make this smarter with a bayesian approach? I'm thinking it couldmake a smarter guess what the actual pixelvalue should be rather than just the average.
Any ideas would be appreciated!