MRI Image processing in MATLAB
17 次查看(过去 30 天)
显示 更早的评论
Hello
I'm Matlab beginner...How can i reach 2th image(MRI after initial filter) of step 4 of this site:

thank you
回答(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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Neuroimaging 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!