HOW TO FIND THE FOURIER TRANSFORM OF DIFFERENT SEGMENTS IN AN IMAGE?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a matrix of 200 *200 pixels.The marix is divided into 40*40 pixels segments (A masked image) . I want to find the FOURIER TRANFORM of each segment separately and then map them together as a single matrix (200*200 pixel). The matrix looks as I have attached in figure. The circles have lens property so the mapped image will be as spots in the next surface. Please tell me how to do it.
댓글 수: 0
채택된 답변
Vishnu Vardhan
2019년 6월 3일
You can first make a copy of 40*40 pixels segment from the original image by making use of the row number and column number appropriately.
For example , If you want the first 40 rows and 40 columns
partOfImage = originalImage(1:40,1:40)
And then perform fft as you do for any image.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
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!