MRI Image processing in MATLAB
조회 수: 44 (최근 30일)
이전 댓글 표시
Hello
I'm Matlab beginner...How can i reach 2th image(MRI after initial filter) of step 4 of this site:

thank you
댓글 수: 4
답변 (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!