stacking rgb images into 3d or 4d variable
6 ビュー (過去 30 日間)
古いコメントを表示
Raheema Al Karim Damani
2019 年 9 月 26 日
コメント済み: Raheema Al Karim Damani
2019 年 11 月 6 日
I have mri frames that are in rgb and I want stack them in a 4d variable ( height x width x 3 channels x number of frames) so that I can view them as a montage.
How can i do this?
0 件のコメント
採用された回答
Adam Danz
2019 年 9 月 26 日
編集済み: Adam Danz
2019 年 9 月 26 日
a = ones(5,6,3)+0;
b = ones(5,6,3)+1;
c = ones(5,6,3)+2;
stacked = cat(4,a,b,c);
% ^ concatenate along 4th dim
If the image sizes are not identical, you can pad them smaller ones to match the size of the larged one by using paddarray() and then use cat().
10 件のコメント
Adam Danz
2019 年 11 月 6 日
I see you've asked similar questions since adding the question above. If you still need help, please create a new question in the forum and send me the link to your new question or add the link as a comment below.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で 3-D Volumetric Image Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!