Comparing two images !!
古いコメントを表示
Hi every one, I have two images and I want if there any difference between them I want to return 1 elso 0 , I know how to write it in python but can you help me to write in matlab...
回答 (1 件)
Walter Roberson
2017 年 2 月 26 日
~isequal(FirstImage, SecondImage)
isequal would normally return 1 if they are identical and 0 otherwise, but you want the opposite of that, which is why the ~ is needed.
カテゴリ
ヘルプ センター および File Exchange で Call Python from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!