create parallel lines in the same pic and find the average of all the ffts in it
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Matt J
il 5 Apr 2021
Modificato: Matt J
il 5 Apr 2021
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 Commenti
Matt J
il 7 Apr 2021
It is taking the FFT of the average row. The averaging does not distinguish between foreground and background.
Vedere anche
Categorie
Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!