Comparing two images !!
Mostrar comentarios más antiguos
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...
Respuestas (1)
Walter Roberson
el 26 de Feb. de 2017
~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.
1 comentario
Abdullah AlHarbi
el 27 de Feb. de 2017
Categorías
Más información sobre Call Python from MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!