Which image contributes to the maximum intensity projection?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
Kevin Holly
el 27 de Jul. de 2022
Images=rand(3,10,10);
[maxImage index] = max(Images);
size(maxImage)
imshow(squeeze(maxImage))
index
0 comentarios
Ver también
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!