MRI Image processing in MATLAB

34 ビュー (過去 30 日間)
nstrn hdr
nstrn hdr 2020 年 2 月 14 日
編集済み: KALYAN ACHARJYA 2025 年 3 月 29 日
Hello
I'm Matlab beginner...How can i reach 2th image(MRI after initial filter) of step 4 of this site:
thank you
  4 件のコメント
nstrn hdr
nstrn hdr 2020 年 2 月 20 日
Thank you for your attention, but if you click on the image of the part "Step 4: Filter Out Noise From the Image" you can clearly see "MRI after initial filter" image (that I brought it under my question). furthermore, the belonging code is the 2nd image of that part too.
I saw your perfect code, but it had an error on my image bcz of it is MRI image, not CT.
Hope you bestt
G
G 2025 年 3 月 29 日
i want the code

サインインしてコメントする。

回答 (1 件)

KALYAN ACHARJYA
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.

カテゴリ

Help Center および File ExchangeNeuroimaging についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by