Plotting Image intensity from Matrix
4 ビュー (過去 30 日間)
表示 古いコメント
Amit Chakraborty
2022 年 7 月 10 日
コメント済み: Amit Chakraborty
2022 年 7 月 12 日
Greetings to all ! I have a 3D matrix which represnts a Sheep_Logan Phantom. Is there any way to plot the intensity ogf the image matrix both in horizontal and vertical direction? I can do the same things with saving an image but I want it from the matrix that I have attached.
0 件のコメント
採用された回答
Image Analyst
2022 年 7 月 11 日
Do you want the profile along some certain row or columns, like
rowProfile = squeeze(image3d(rowNumber, :, sliceNumber));
columnProfile = squeeze(image3d(:, colNumber, sliceNumber));
or do you want the average profile across the entire plane? Or the max projection? Have you seen slice?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!