How to segment White Gray matter of Brain CT?

조회 수: 3 (최근 30일)
Mohamad Ajam
Mohamad Ajam 2018년 9월 19일
답변: Image Analyst 2018년 9월 30일
I tried to use the following thresholding 25–38HU of white matter, and 35–60HU of gray matter.
close all;
clear all;
I=imread(Normal00481.jpg');
I1=rgb2gray(I);
subplot(2,3,1);
imshow(I1,[]);
WhiteThresh= I1>= 25 & I1<=38;
I1(~WhiteThresh)=0;
subplot(2,3,2);
imshow(I1,[]);
BW1 = edge(I1,'canny');
subplot(2,3,3);
imshow(BW1);
GrayThrsh=I1>= 35 & I1<=60;
I1(~GrayThrsh)=0;
subplot(2,3,4);
imshow(I1,[]);
BW2 = edge(I1,'canny');
subplot(2,3,5);
imshow(BW2);
  댓글 수: 10
Mohamad Ajam
Mohamad Ajam 2018년 9월 20일
I uploaded another image.
Mohamad Ajam
Mohamad Ajam 2018년 9월 30일
If I have the dicom data how can i can i identify the threshold for segmentation white/gray material from HU unit.

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

채택된 답변

Image Analyst
Image Analyst 2018년 9월 30일

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by