I HAVE WRITTEN THE FOLLOWING CODE AND NOW I WANT TO CONVERT THE 'D' IMAGE INTO 8*8 BLOCKS AND LATER I WANT TO APPLY THE FAN BEAM TRANSFORM

1 vue (au cours des 30 derniers jours)
C = imread('b.jpg');
image(C)
A=rgb2gray(C);
subplot(1,1,1)
%imshow(A);
[r,c]=size(A);
D=A(1:2:r,1:2:c);
figure,imshow(D);
E=sqrt(size(D,1)^2 + size(D,2)^2);
F = fanbeam(D,E);
A is a 1024*1024 image. what can i do to divide it into blocks?

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by