code for Bessel-Fourier moment moment on color images

2 visualizaciones (últimos 30 días)
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz el 7 de Mzo. de 2020
Comentada: Walter Roberson el 11 de Mzo. de 2020
Hello every body where can i find code for : Bessel-Fourier moment for color images
i have search the internet , but i found only codes for gray images i need this code for color images essentially
Thanx for all,
  5 comentarios
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz el 10 de Mzo. de 2020
Dear Walter Roberson I am very thanx for your replies
i have run this code that you supported me , but the result image shows as in figure in afalse manner
what make it shows in this shape
Walter Roberson
Walter Roberson el 11 de Mzo. de 2020
Change
subplot(121);
imshow(uint8(abs(I)));
title('Original');
subplot(122);
imshow(uint8(abs(It)));
to
subplot(121);
imshow(reshape(uint8(abs(I)), 256, 256, []));
title('Original');
subplot(122);
imshow(reshape(uint8(abs(It)),256, 256, []));

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 7 de Mzo. de 2020
https://www.computer.org/csdl/proceedings-article/icmssp/2016/07946028/12OmNxG1yGG says just process the three different color channels independently.
  2 comentarios
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz el 8 de Mzo. de 2020
Dear Walter Roberson how can i represent this equation using matlab code

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by