Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier...

41

Transcript of Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier...

Page 1: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros
Page 2: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Recap: Fourier domain

Page 3: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

2d Fourier Transform

Page 4: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Fourier Bases

This change of basis is the Fourier Transform

Teases away fast vs. slow changes in the image.

Page 5: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Fourier Bases

in Matlab, check out: imagesc(log(abs(fftshift(fft2(im)))));

Page 6: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Man-made Scene

Page 7: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Can change spectrum, then reconstruct

Page 8: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Low and High Pass filtering

Page 9: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

• What is the spatial representation of the hard cutoff in the frequency domain?

Sinc Filter

Frequency Domain Spatial Domain

Page 10: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Review

1. Match the spatial domain image to the Fourier magnitude image

1 54

A

32

C

B

D

E

Page 11: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

The Convolution Theorem

• The Fourier transform of the convolution of two functions is the product of their Fourier transforms

• Convolution in spatial domain is equivalent to multiplication in frequency domain!

]F[]F[]F[ hghg

]]F[][F[F* 1 hghg

Page 12: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Filtering in spatial domain-101

-202

-101

* =

Page 13: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Filtering in frequency domain

FFT

FFT

Inverse FFT

=

Slide: Hoiem

Page 14: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Fourier Matlab demo

Page 15: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

FFT in Matlab

• Filtering with fft

• Displaying with fft

im = double(imread(‘…'))/255;

im = rgb2gray(im); % “im” should be a gray-scale floating point image

[imh, imw] = size(im);

hs = 50; % filter half-size

fil = fspecial('gaussian', hs*2+1, 10);

fftsize = 1024; % should be order of 2 (for speed) and include padding

im_fft = fft2(im, fftsize, fftsize); % 1) fft im with padding

fil_fft = fft2(fil, fftsize, fftsize); % 2) fft fil, pad to same size as

image

im_fil_fft = im_fft .* fil_fft; % 3) multiply fft images

im_fil = ifft2(im_fil_fft); % 4) inverse fft2

im_fil = im_fil(1+hs:size(im,1)+hs, 1+hs:size(im, 2)+hs); % 5) remove padding

figure(1), imagesc(log(abs(fftshift(im_fft)))), axis image, colormap jet

Slide: Hoiem

Page 16: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Why does the Gaussian give a nice smooth image, but the square filter give edgy artifacts?

Gaussian Box filter

Filtering

Page 17: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Gaussian

Page 18: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Box Filter

Page 19: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Is convolution invertible?

• If convolution is just multiplication in the Fourier domain, isn’t deconvolution just division?

• Sometimes, it clearly is invertible (e.g. a convolution with an identity filter)

• In one case, it clearly isn’t invertible (e.g. convolution with an all zero filter)

• What about for common filters like a Gaussian?

Page 20: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Let’s experiment on Novak

Page 21: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Convolution

* =

FFT FFT

.* =

iFFT

Page 22: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Deconvolution?

iFFT FFT

./=

FFT

Page 23: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

But under more realistic conditions

iFFT FFT

./=

FFT

Random noise, .000001 magnitude

Page 24: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

But under more realistic conditions

iFFT FFT

./=

FFT

Random noise, .0001 magnitude

Page 25: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

But under more realistic conditions

iFFT FFT

./=

FFT

Random noise, .001 magnitude

Page 26: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

With a random filter…

iFFT FFT

./=

FFT

Random noise, .001 magnitude

Page 27: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Deconvolution is hard

• Active research area.

• Even if you know the filter (non-blind deconvolution), it is still very hard and requires strong regularization.

• If you don’t know the filter (blind deconvolution) it is harder still.

Page 28: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Why does a lower resolution image still make sense to us? What do we lose?

Image: http://www.flickr.com/photos/igorms/136916757/

Sampling

Page 29: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Throw away every other row and

column to create a 1/2 size image

Subsampling by a factor of 2

Page 30: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

• 1D example (sinewave):

Source: S. Marschner

Aliasing problem

Page 31: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Source: S. Marschner

• 1D example (sinewave):

Aliasing problem

Page 32: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

• Sub-sampling may be dangerous….

• Characteristic errors may appear:

– “car wheels rolling the wrong way in movies”

– “Checkerboards disintegrate in ray tracing”

– “Striped shirts look funny on color television”

Source: D. Forsyth

Aliasing problem

Page 33: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Aliasing in video

Slide by Steve Seitz

Page 34: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Source: A. Efros

Aliasing in graphics

Page 35: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Sampling and aliasing

Page 36: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

• When sampling a signal at discrete intervals, the sampling frequency must be 2 fmax

• fmax = max frequency of the input signal

• This will allows to reconstruct the original perfectly from the sampled version

good

bad

v v v

Nyquist-Shannon Sampling Theorem

Page 37: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Anti-aliasing

Solutions:

• Sample more often

• Get rid of all frequencies that are greater than half the new sampling frequency

– Will lose information

– But it’s better than aliasing

– Apply a smoothing filter

Page 38: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Algorithm for downsampling by factor of 2

1. Start with image(h, w)

2. Apply low-pass filter

im_blur = imfilter(image, fspecial(‘gaussian’, 7, 1))

3. Sample every other pixel

im_small = im_blur(1:2:end, 1:2:end);

Page 39: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Anti-aliasing

Forsyth and Ponce 2002

Page 40: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Subsampling without pre-filtering

1/4 (2x zoom) 1/8 (4x zoom)1/2

Slide by Steve Seitz

Page 41: Recap: Fourier domainhays/compvision2017/lectures/06.pdf · Recap: Fourier domain. 2d Fourier Transform. Fourier Bases ... Aliasing in video Slide by Steve Seitz. Source: A. Efros

Subsampling with Gaussian pre-filtering

G 1/4 G 1/8Gaussian 1/2

Slide by Steve Seitz