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

14 vues (au cours des 30 derniers jours)
Alberto Acri
Alberto Acri le 10 Mar 2022
Does anyone know of good codes to import DICOM files (from CT) and to segment the bone present within the DICOM file?
  3 commentaires
Alberto Acri
Alberto Acri le 10 Mar 2022
Excuse me, as available codes?
Rik
Rik le 10 Mar 2022
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.

Connectez-vous pour commenter.

Réponses (1)

yanqi liu
yanqi liu le 11 Mar 2022
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);

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by