code for Bessel-Fourier moment moment on color images

조회 수: 2 (최근 30일)
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz 2020년 3월 7일
댓글: Walter Roberson 2020년 3월 11일
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
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz 2020년 3월 10일
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 2020년 3월 11일
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, []));

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

답변 (1개)

Walter Roberson
Walter Roberson 2020년 3월 7일
https://www.computer.org/csdl/proceedings-article/icmssp/2016/07946028/12OmNxG1yGG says just process the three different color channels independently.
  댓글 수: 2
Mostfa Abd El-Aziz
Mostfa Abd El-Aziz 2020년 3월 8일
Dear Walter Roberson how can i represent this equation using matlab code
Walter Roberson
Walter Roberson 2020년 3월 8일
Jv is besselj()

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

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by