segmentation medical image irm

조회 수: 2 (최근 30일)
lamis ke
lamis ke 2020년 7월 12일
댓글: Husam Banno 2020년 9월 22일
I am doing Brain tissues MRI segmentation using PSO the output is 4 labels image (Gray Matter, White Matter, CSF) after doing segmetation i get this result . now how separate between this colors (classes) in subplots from this to this
  댓글 수: 3
lamis ke
lamis ke 2020년 9월 21일
  1. load image
  2. pretraitment (i used median filter to remove noise )
  3. segmentation (here i used PSO from https://www.mathworks.com/matlabcentral/fileexchange/29517-segmentation)
  4. u can use FCM https://www.mathworks.com/matlabcentral/fileexchange/43987-original-fcm-for-image-segmentation
Husam Banno
Husam Banno 2020년 9월 22일
Thanks for the information

댓글을 달려면 로그인하십시오.

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 8월 2일
편집: KALYAN ACHARJYA 2020년 8월 2일
Lets say "seg_image" is the segmented image. Once segmentation, all regions have different pixels value, please check the pixel value of Gray Matter, White Matter, CSF. The respective resion must have same pixel value.
subplot(131),imshow(seg_image(seg_image==Gray_Matter_pixel value || seg_image==0);
subplot(131),imshow(seg_image(seg_image==White_Matter_pixel value || seg_image==0);
subplot(131),imshow(seg_image(seg_image==CSF_pixel value || seg_image==0);
Any issue let me know?

카테고리

Help CenterFile Exchange에서 MRI에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by