필터 지우기
필터 지우기

medical image processing - Import and Segment DICOM (CT) files

조회 수: 8 (최근 30일)
Alberto Acri
Alberto Acri 2022년 3월 10일
답변: yanqi liu 2022년 3월 11일
Does anyone know of good codes to import DICOM files (from CT) and to segment the bone present within the DICOM file?
  댓글 수: 3
Alberto Acri
Alberto Acri 2022년 3월 10일
Excuse me, as available codes?
Rik
Rik 2022년 3월 10일
You probably want to start with dicomread.
If you have specific question: have a read here and here. It will greatly improve your chances of getting an answer.

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

답변 (1개)

yanqi liu
yanqi liu 2022년 3월 11일
yes,sir,read dcm image can use dicomread,if want to segment image,there are many method,we should choose method by real image information,such as
I = dicomread('CT-MONO2-16-ankle.dcm');
bw = imbinarize(mat2gray(I),'adaptive','ForegroundPolarity','dark','Sensitivity',0.7);
bw = bwareaopen(bw, 50);
figure
imshow(I,[]);
hold on;
h = imshow(label2rgb(bwlabel(bw)), []);
set(h, 'AlphaData', 0.5);

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by