How can I add gaussian noise ( with a particular mean and variance ) to an image using emgucv ?
相关问题
- Additional information: OpenCV: Different sizes of
- How do I display a video with opencv from bytes?
- Numpy: Generating a 2D Sum of Gaussians pdf as an
- Why might EmguCV Gaussian blur not return identica
- why the integral-image contains extra row and colu
相关文章
- detect paper from background almost same as paper
- How to add and remove noise from an image
- Detect display corners with Emgu
- Get and Set Pixel Gray scale image Using Emgu CV
- SVG gaussian blur in Safari unexpectedly lightens
- Correct way to extract Translation from Essential
- Implementation of Gaussian Process Regression in P
- Gaussian Process scikit-learn - Exception
I'm not sure quite what your asking as a Gaussian filter tends to be there to remove noise. To use a custom kernel you can use the following code. If you wish to add noise with a set mean and variance then you may have to resort to looping through the my_image.Data property and add it that way. Here is the code for using a custom Kernel if it's not quite what your after let me know and I'll try and find something more appropriate a link to example images may be useful in this case.
I Hope this Helps,
Chris