How to make close surface in dicom image

1 visualización (últimos 30 días)
mohd akmal masud
mohd akmal masud el 22 de Oct. de 2023
Respondida: Image Analyst el 22 de Oct. de 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 comentarios
Image Analyst
Image Analyst el 22 de Oct. de 2023
I have no idea what you're asking. Are you asking how to use imclose? Or how to blur the image?
mohd akmal masud
mohd akmal masud el 22 de Oct. de 2023
Yes imclose

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Oct. de 2023
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.

Más respuestas (0)

Categorías

Más información sobre 3-D Volumetric Image Processing en Help Center y File Exchange.

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by