| [Top] [Up] [Prev] [Next] | [Up] [Basic Concepts] [Demonstrations] [Functions] | SDC Morphology Toolbox V1.1 15Jan02 |
y = mmopen( f, b ) f: Gray-scale (uint8 or uint16) or binary image (logical uint8). b: Structuring element. Default: Elementary cross (mmsecross).y: Gray-scale (uint8 or uint16) or binary image (logical uint8). mmopen creates the image y by the morphological opening of the image f by the structuring element b. In the binary case, the opening by the structuring element B may be interpreted as the union of translations of B included in f. In the gray-scale case, there is a similar interpretation taking the functions umbra.f=mmbinary(mmreadgray('blob.tif')); Warning: Converting image from binary uint8 to uint8. bimg=mmbinary(mmreadgray('blob1.tif')); Warning: Converting image from binary uint8 to uint8. b=mmimg2se(bimg); mmshow(f); mmshow(mmopen(f,b)); mmshow(mmopen(f,b),mmgradm(f));
|
a=mmbinary(mmreadgray('pcb1bin.tif')); Warning: Converting image from binary uint8 to uint8. b=mmopen(a,mmsebox(2)); c=mmopen(a,mmsebox(4)); mmshow(a); mmshow(b); mmshow(c);
|
a=mmreadgray('astablet.tif'); b=mmopen(a,mmsedisk(18)); mmshow(a); mmshow(b);
|

function y=mmopen_equ( f, b ) y = mmdil(mmero(f,b),b);
| [Top] [Up] [Prev] [Next] | [Up] [Basic Concepts] [Demonstrations] [Functions] |
|
| Copyright (c) 1998-2002 by SDC Information Systems | ||