How to make close surface in dicom image

조회 수: 1 (최근 30일)
mohd akmal masud
mohd akmal masud 2023년 10월 22일
답변: Image Analyst 2023년 10월 22일
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
Image Analyst
Image Analyst 2023년 10월 22일
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 2023년 10월 22일
Yes imclose

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

채택된 답변

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에서 3-D Volumetric Image Processing에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by