| [mmero] [Up] [mmasf] | Morphological Filters |
| User Feedback |
| f | Image Gray-scale (uint8 or uint16) or binary image |
| b | Structuring Element
Default: |
| y | Image |
mmcenter creates the image y by computing recursively the morphological center, relative to the structuring element b, of the image f .


function y=mmcenter_equ( f, b ) y = f; diff = 0; while(diff~=1) aux = y; beta1 = mmasf(y,'COC',b,1); beta2 = mmasf(y,'OCO',b,1); y = mmunion(mmintersec(y,beta1),beta2); diff = mmisequal(aux,y); end;
| [mmero] [Up] [mmasf] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |