overlay the image with transparency
古いコメントを表示
I have an image A which is
A = dicomread ('HYP-P-040.MR.ALL_PHYSICS_JAMESO.0004.0001.2019.12.11.14.31.46.328125.178069209.IMA'); %T2Axial image
and image B which is
B= dicomread('metab1_dyn=0001_slice=0001.IMA'); %metabolite 1
How can i overlay image B on A with transparency.
Both Image is attached for reference.
Please provide support.
採用された回答
その他の回答 (1 件)
Image Analyst
2020 年 11 月 3 日
0 投票
5 件のコメント
Medical Imaging
2020 年 11 月 3 日
Image Analyst
2020 年 11 月 3 日
I'm not able to use your code to open your images. Are you sure you attached the right files and right code to read them in?
Medical Imaging
2020 年 11 月 3 日
Image Analyst
2020 年 11 月 3 日
They aren't even the same size, so how do you want to overlay them? Resize B to match A?
A = dicomread ('HYP-P-040.MR.ALL_PHYSICS_JAMESO.0004.0002.2019.12.11.14.31.46.328125.178068929.IMA'); %T2Axial image
subplot(2, 2, 1);
imshow(A, [])
B = dicomread('metab1_dyn=0001_slice=0001.IMA'); %metabolite 1
subplot(2, 2, 2);
imshow(B, [])

Medical Imaging
2020 年 11 月 4 日
カテゴリ
ヘルプ センター および File Exchange で Blue についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

