필터 지우기
필터 지우기

I want to extract skull from Brain MRI usinG MORPHOLOGICAL OPERATIONS . But i didnt get a useful output by using the following code..Please help me to solve this.s

조회 수: 20 (최근 30일)
clear all;
clc
[filename pathname] = uigetfile({'*.jpg';'*.bmp'},'Select MRI');
inputimage=strcat(pathname, filename);
I = imread(inputimage);
figure,imshow(I), title('input');
se = strel('disk',7);
closeBW = imclose(I,se);
figure, imshow(closeBW);title('close operation');
afterOpening = imopen(closeBW,se);
figure, imshow(afterOpening,[]);title('open operation');
J=I-afterOpening;
figure, imshow(J,[]);title('Skull of MRI');
K=I-J;
figure, imshow(K,[]);title('Skull removed MRI');

채택된 답변

Image Analyst
Image Analyst 2017년 2월 17일
See attached m-file.
  댓글 수: 6
Magdalena Gierczynska
Magdalena Gierczynska 2020년 7월 25일
Hi, I'm writing my bachelor thesis and I tried use this code to skull removal but it doesn't work. I work on dicom files, but on .jpg it doesn't work too. Can u help me? What I do wrong?
Image Analyst
Image Analyst 2020년 7월 25일
Well it's nothing like my code. Anyway, you should threshold the image to find everything that's skull, then use that to erase the skull pixels.
skull = grayImage > someValue;
grayImage(skull) = 0;
There are a few other things you could do to make it better but that's basically it.

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

추가 답변 (1개)

Manikandan R
Manikandan R 2018년 12월 6일
where the m file is attached

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by