How to make close surface in dicom image
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mohd akmal masud
am 22 Okt. 2023
Beantwortet: Image Analyst
am 22 Okt. 2023
Hello All,
Any one can help me how to apply close surface in my image dicom. So that my image can become smooth gradient.
2 Kommentare
Akzeptierte Antwort
Image Analyst
am 22 Okt. 2023
grayimage = dicomread(fileName); % Get original image.
subplot(1, 2, 2);
imshow(grayImage); % Display the original image on the left.
se = strel('disk', 9, 0); % Create structuring element.
closedImage = imclose(grayImage, se); % Do the morphological closing.
subplot(1, 2, 2);
imshow(closedImage, []); % Display the resulting image on the right.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 3-D Volumetric Image Processing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!