Reputation: 97
I am getting 16 bit grayscale images from a camera. I want to reduce the noise of these images by averaging the images (by factor of 2, 4 etc).
I have the pixel data in a byte array. I have tried to use Aforge.Net,but the code throws exception when trying to apply noise reduction (AForge.Imaging.UnsupportedImageFormatException: 'Source pixel format is not supported by the filter.'
).
Is there a better way to apply noise reduction by averaging incoming images directly on a byte array?
Upvotes: 0
Views: 188