MRI Image processing in MATLAB
古いコメントを表示
Hello
I'm Matlab beginner...How can i reach 2th image(MRI after initial filter) of step 4 of this site:

thank you
4 件のコメント
Subhadeep Koley
2020 年 2 月 15 日
Also please post your codes so that we can reproduce the issues.
Image Analyst
2020 年 2 月 15 日
編集済み: Image Analyst
2020 年 2 月 15 日
It looks like the code is pretty well documented and commented, though there is nothing on the page that says "MRI After" so I don't know where in the code was immediately before that call to title() where they put up that title, so I don't know which step was immediately before that.
See my own, attached tumor demo.
nstrn hdr
2020 年 2 月 20 日
G
2025 年 3 月 29 日
i want the code
回答 (1 件)
KALYAN ACHARJYA
2025 年 3 月 29 日
編集済み: KALYAN ACHARJYA
2025 年 3 月 29 日
As per the referenced link, you can easily access the second segment image. Ensure that the original image is in the current working directory or specify the correct path.
Code:
I = imread('mri_test.png');
thresha = I>150 & I < 260;
imagesc(thresha);colormap(gray);
Result:

For a better understanding of image segmentation, please refer to the materials provided by Image Analyst in the comment section of the question.
カテゴリ
ヘルプ センター および File Exchange で Neuroimaging についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!