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!