필터 지우기
필터 지우기

fractional fourier transform

조회 수: 5 (최근 30일)
ganesh s
ganesh s 2011년 8월 30일
how to find the Fourier transform of the color image? & how to extract feature of color image by using fractional Fourier transform?

채택된 답변

David Young
David Young 2011년 8월 30일
Use fft2 on each of the colour planes in turn, for example
Ft_image(:,:,1) = fft2(Image(:,:,1));
Ft_image(:,:,2) = fft2(Image(:,:,2));
Ft_image(:,:,3) = fft2(Image(:,:,3));
(assuming that you don't want the Fourier transform in colour space - I don't think that would make sense).
I don't know about the fractional Fourier transform.
  댓글 수: 1
ganesh s
ganesh s 2011년 9월 6일
that's right but i wanted to know how to find the fractional Fourier transform of color image

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by