DICOM画像同士の​類似度(SSIM)を​評価したい

フォルダAとフォルダB内の50枚同士のDICOM画像を類似度評価(SSIM)したいと考えております。
内容としてはフォルダA内のDICOM image A1とフォルダB内のDICOM image B1,A2とB2....A50とB50のように計50個のSSIMの結果を導きたいと思っております。
MATLAB初心者のため、教えていただければ幸いです。
よろしくお願いいたします。

Réponses (1)

Atsushi Ueno
Atsushi Ueno le 8 Août 2022

0 votes

listA = dir(fullfile(pwd,'A','*.dcm')); % フォルダA内のDICOM imageを検索
for n = 1:length(listA)
img1 = dicomread(fullfile(listA(n).folder,listA(n).name)); % フォルダAのA1,A2...を読む
img2 = dicomread(fullfile(pwd,'B',strrep(listA(n).name,'A','B'))); % フォルダBのB1,B2...を読む
ssimval{n} = ssim(img1, img2);
end

1 commentaire

賢佑 柳
賢佑 柳 le 10 Août 2022
無事SSIMを出すことができました。
感謝申し上げます。

Connectez-vous pour commenter.

Catégories

En savoir plus sur DICOM Format dans Centre d'aide et File Exchange

Produits

Version

R2021a

Tags

Question posée :

le 7 Août 2022

Commenté :

le 10 Août 2022

Community Treasure Hunt

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

Start Hunting!