Hello, I want to show the image slice from the below example, where CT and SPECT both are image array with the same width, size and spacing.
for m = 1:199
CT_img = new_CT(:,:,m);
SPECT_img = SPECT(:,:,m);
final_img = imfuse(CT_img, SPECT_img);
imshow(final_img, [-800 1000]);
end
show_20th_slice = imshow(final_img(:,:,20))
How can I do this?