How to make close surface in dicom image

1 次查看(过去 30 天)
Hello All,
Any one can help me how to apply close surface in my image dicom. So that my image can become smooth gradient.

采纳的回答

Image Analyst
Image Analyst 2023-10-22
I think you already know how to use imclose from the help, but anyway, try this
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 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by