create parallel lines in the same pic and find the average of all the ffts in it

조회 수: 2 (최근 30일)
Hello everyone i have a code which draws a line in a pic and takes the fft of the profile of the line,does anyone know how can i take multiple parallel lines to the original line and find the ffts of all the profiles of the pixels and find the averge fft?

채택된 답변

Matt J
Matt J 2021년 4월 5일
편집: Matt J 2021년 4월 5일
Could you imrotate() the image so that it's rows are parallel to your line? Then, the operation would reduce to
fft( mean( imrotate(yourImage,angle) ,1) )
  댓글 수: 8
george korris
george korris 2021년 4월 7일
편집: george korris 2021년 4월 7일
sorry to bother you again matt but when using that comand where you calculate the fft of the rotated image is it calculating the fft of the background black pixels that imrotate creates or is it taking into considaration only the pixels of the image?
Matt J
Matt J 2021년 4월 7일
It is taking the FFT of the average row. The averaging does not distinguish between foreground and background.

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

추가 답변 (1개)

Matt J
Matt J 2021년 4월 5일
The operation sounds the same, up to a scale factor, as doing
fft(radon(yourImage,theta))
  댓글 수: 2
george korris
george korris 2021년 4월 5일
thank you so much Matt for your answer , so this line is calxulating all the ffts of the lines in a specific angle theta?
Matt J
Matt J 2021년 4월 5일
It is summing along a direction theta, then taking the fft, but that is essentially the same thing.

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

카테고리

Help CenterFile Exchange에서 MATLAB Mobile Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by