用matlab处理图像退化函数
我对 matlab 和图像处理工具箱非常陌生。
我在 matlab 中有一个源图像。我需要通过对其进行傅立叶变换来模糊该图像,然后将其与 H(u,v) 相乘。至少我需要进行逆变换。 H(u,v) 如下所示。我该如何用matlab来做呢? PI是数学中的PI常数。
I am very new to matlab and image processing toolbox.
I have a source image in matlab. I need to blur this image by taking the Fourier transform of it and then multiply it with H(u,v). At least I need take the inverse transform. H(u,v) is given below. How can I do it with matlab. PI is the PI constant in math.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看图像处理工具箱中的
imfilter
函数。如果此函数不适合您,那么您可以使用fft2
和ifft2
函数进行前向和后向傅里叶变换。Look
imfilter
function from Image Processing Toolbox. If this function is not appropriate for you then you can usefft2
andifft2
functions to do forward and backward Fourier transform.