Which image contributes to the maximum intensity projection?
Ältere Kommentare anzeigen
I have 3 images and am doing a maximum intensity projection for these 3 images. I want an image which shows the image number that contributed to this maximum intensity projection. How do I do that? Thanks
Antworten (1)
Images=rand(3,10,10);
[maxImage index] = max(Images);
size(maxImage)
imshow(squeeze(maxImage))
index
Kategorien
Mehr zu Image Arithmetic finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
