Which image contributes to the maximum intensity projection?
2 ビュー (過去 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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!