Which image contributes to the maximum intensity projection?
조회 수: 7 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Kevin Holly
2022년 7월 27일
Images=rand(3,10,10);
[maxImage index] = max(Images);
size(maxImage)
imshow(squeeze(maxImage))
index
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!