| [mmisbinary] [Up] [mmislesseq] | Relations |
| User Feedback |
mmisequal compares the images f1 and f2 and returns true (1), if f1(x)=f2(x) , for all pixel x, and false (0), otherwise.
f1 = uint8([0:3])
f1 =
0 1 2 3
f2 = uint8([9 5 3 3]);
f3 = f1;
mmisequal(f1,f2)
ans =
0
mmisequal(f1,f3)
ans =
1

function g = mmisequal_equ(f1,f2) g = all(all(f1==f2));
| [mmisbinary] [Up] [mmislesseq] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |