create parallel lines in the same pic and find the average of all the ffts in it
3 次查看(过去 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?
0 个评论
采纳的回答
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 个评论
Matt J
2021-4-7
It is taking the FFT of the average row. The averaging does not distinguish between foreground and background.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!