| [mmsubm] [Up] [mmunion] | Operations |
mmsymdif creates the image
y by taken the union of the subtractions of
f1 from
f2 and
f2 from
f1. When
f1 and
f2 are binary images,
y represents the set of points that are in
f1 and not in
f2 or that are in
f2 and not in
f1 .
def mmsymdif(f1, f2):
y = mmunion(mmsubm(f1,f2),mmsubm(f2,f1))
return y
| mmfreedom | Control automatic data type conversion. |
| [mmsubm] [Up] [mmunion] | |
| Copyright (c) 2003, Roberto A. Lotufo, UNICAMP-University of Campinas; Rubens C. Machado, CenPRA-Renato Archer Research Center. |