Borrar filtros
Borrar filtros

fractional fourier transform

5 visualizaciones (últimos 30 días)
ganesh s
ganesh s el 30 de Ag. de 2011
how to find the Fourier transform of the color image? & how to extract feature of color image by using fractional Fourier transform?

Respuesta aceptada

David Young
David Young el 30 de Ag. de 2011
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 comentario
ganesh s
ganesh s el 6 de Sept. de 2011
that's right but i wanted to know how to find the fractional Fourier transform of color image

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by