Percent Difference between two images

11 ビュー (過去 30 日間)
Marina Ghobrial
Marina Ghobrial 2021 年 5 月 17 日
回答済み: Image Analyst 2021 年 5 月 17 日
What is the code to find the percent differnece between two images that are imfused. They are not the same matrix. help please

回答 (1 件)

Image Analyst
Image Analyst 2021 年 5 月 17 日
Perhaps
pctImage = imabsdiff(image1, image2) ./ double(image1);
meanPct = mean2(pctImage);

Community Treasure Hunt

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

Start Hunting!

Translated by