How to find the differences between two colored images?
1 回表示 (過去 30 日間)
古いコメントを表示
Dear all, I have original image and another one that has something missing. I need an algorithm to find this missing thing between these two images and make circle or square on the place of this missing thing. Could you please help me?
Thanks for you all
0 件のコメント
回答 (1 件)
Image Analyst
2017 年 7 月 3 日
Are they the same size? Why not simply subtract them?
diffImage = double(image1) - double(image2);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!