Presentation is loading. Please wait.

Presentation is loading. Please wait.

DCSP-22 Jianfeng Feng Department of Computer Science Warwick Univ., UK

Similar presentations


Presentation on theme: "DCSP-22 Jianfeng Feng Department of Computer Science Warwick Univ., UK"— Presentation transcript:

1 DCSP-22 Jianfeng Feng Department of Computer Science Warwick Univ., UK Jianfeng.feng@warwick.ac.uk

2 Norbert Wiener

3 The RGB format stores three color values, R, G and B, for each pixel. RGB = imread(bush.png'); size(RGB) ans = 1500 1200 3 imshow(RGB)

4

5 Wiener Filter Recorded signal x(n,m) = s(n,m) + (n,m) for example, an image of 1500 X1200 True Signal noise

6 RGB = imread(bush.png'); I = rgb2gray(RGB); J = imnoise(I,'gaussian',0,0.005); figure, imshow(I), figure, imshow(J)

7 To find a constant a such that E ( a(m,n) x(m,n) – s(m,n) ) 2 as small as possible y(m,n) = a(m,n) x(m,n) Different from the filter before, a(m,n) depends on (m,n) : Adapted filter

8 The quanttity above is minimized if the derivative of it with respect to a is zero

9 We assume that Es=0 E =0 and S, are independent

10 Algorithm wiener2 lowpass-filters an intensity image that has been degraded by constant power additive noise. wiener2 uses a pixelwise adaptive Wiener method based on statistics estimated from a local neighborhood of each pixel.

11 wiener2 estimates the local mean and variance around each pixel where summation is over an area of N and M 1 X 1 area (N=1,M=1)

12 The filtered output is given by Note that the coefficient a depends on the position

13 RGB = imread(bush.png'); I = rgb2gray(RGB); J = imnoise(I,'gaussian',0,0.005); K = wiener2(J,[5 5]); figure, imshow(J), figure, imshow(K)

14 How to implement Wiener filter in one dimension? Our Wiener filter depends on only the current input, more generally we could develop an ARMA filter which is called Kaman filter and is widely used in many areas


Download ppt "DCSP-22 Jianfeng Feng Department of Computer Science Warwick Univ., UK"

Similar presentations


Ads by Google