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
2023 年 10 月 22 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で 3-D Volumetric Image Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!