how to find spatial frequency of color image
이전 댓글 표시
i have fused two images and now i want to find the spatial frequency of fused image can anyone please help
답변 (2개)
Image Analyst
2013년 11월 6일
1 개 추천
You can calculate the 2D FFT of an image. The image must be a 2D image, not a 3D color image. So you can convert that to gray scale using rgb2gray(), or you can use the red, green, or blue channel, or you can convert to another colorspace such as lab or hsv (using rgb2hsv() function) and then do the FFT of the h, s, or v channel. It all depends on what you want to do with the information once you get it.
댓글 수: 4
mohammad shafi bhatt
2013년 11월 6일
Image Analyst
2013년 11월 6일
You're welcome. There are other ways to compare images also, such as histograms, SSIM, etc.
mohammad shafi bhatt
2013년 11월 10일
Image Analyst
2013년 11월 10일
I said you can use fft2() to get the spatial frequencies. I don't know what "fusion mutual information" is.
Jan
2013년 11월 6일
0 개 추천
You probably want to analyze the structure of the image's 2d fourier transform using fft2(). Either for each channel or after conversion to a gray image.
카테고리
도움말 센터 및 File Exchange에서 Image Quality에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!