Solving Image Processing Problem: Fourier Transform and Image Dimensions

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
7 replies · 3K views
mr_k
Messages
9
Reaction score
0
hi!
i need help with problem:
Let F(u,v) be the Fourier transform of an M x N image f(x,y). Let g(x,y) be an image of dimensions (2 M) x (2 N) whose Fourier transform G(u,v) is defined as follows:
quest2.gif

What does the image g(x,y) look like in terms of f(x,y)?

my solution : g(x,y)=0.25f(x/2,y/2).

Is that true?

thanks :)
 
Physics news on Phys.org
No, you're on the wrong track. You have an image that has looks basically the same but has twice (in this case) as many points. These extra points are interpolated between the points of the original f. This is known as zero-padding. See if you can work it out from the DFT expressions.
 
You are not completely on the wrong track, but your math solution is wrong, because the functions f(x,y) etc are only defined when x and y are integers. You can't talk about "half a pixel", so f(x/2, y/2) doesn't mean anything if x or y are odd numbers.

On the other hand if you say what your formula means "in words" rather than as a math formula, it does describe what the image "looks like".
 
ok,So what's the right answer?