Percent Difference between two images
显示 更早的评论
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
2021-5-17
Perhaps
pctImage = imabsdiff(image1, image2) ./ double(image1);
meanPct = mean2(pctImage);
类别
在 帮助中心 和 File Exchange 中查找有关 Images 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!