필터 지우기
필터 지우기

Image processing using the frequency domain - duplicate image

조회 수: 1 (최근 30일)
Despairy
Despairy 2013년 1월 19일
댓글: gromit park 2016년 10월 13일
I need to understand the way this picture can be fixed
need to get only one instance of the dog.
This is what we have learned :
  1. low pass filter
  2. high pass filter
  3. homomorphic filter
is there any way using the above to fix the image? I've included the fft image so maybe you can point out the thing I should be seeing that makes the image blurry as it is.
asking for theoretical help mostly , thanks
  댓글 수: 2
Image Analyst
Image Analyst 2013년 1월 19일
Avoid the problem in the first place. Lay off the caffeine so you can keep the camera still, or train Sean's dog to be more still. ;-)
gromit park
gromit park 2016년 10월 13일
Th right FFT is the result of left image?

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2013년 1월 19일
편집: Matt J 2013년 1월 19일
If F(k) is the spectrum of the dog, then F(k)*exp(-2*pi*j*dot(t,k)) is the spectrum of the dog translated by t and the spectrum of the blurry dog is their superposition
F(k)*(1+exp(-2*pi*j*dot(t,k)))
I suspect you're being asked to filter out the (1+exp(-2*pi*j*dot(t,k))). You need to know t in order to do so, but t dictates the orientation of the sinusoidal pattern of lines you're seeing in the background in the spectrum you've shown. Some sort of edge/line detection should do it.
  댓글 수: 10
Image Analyst
Image Analyst 2013년 1월 20일
Have you ever looked at the spectrum without fftshift()? If so, you'll notice the "origin" is at the 4 corners so your filter will have to go out only until the middle of the image and you'll have to flip things around as you process the other 3 quadrants so that their origins are in the same place, then you'll have to unflip then to put their origins back. It might be easier to fftshift your filter, but if you don't you'll have to extract quadrants, call things like flipud(), fliplr() or transpose to get the origin where it needs to be.
Despairy
Despairy 2013년 1월 21일
Yeah, I've looked on every middle phase matrix and just realized that a while back.
Thanks again for everything, D

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Frequency Transformations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by