Home > freetb4matlab > image > imopen.m

imopen

PURPOSE ^

% Perform morphological opening on a given image.

SYNOPSIS ^

function retval = imopen(im, se)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} @var{B} = imopen (@var{A}, @var{se})
% Perform morphological opening on a given image.
% The image @var{A} must be a grayscale or binary image, and @var{se} must be a
% structuring element.
%
% The opening corresponds to an erosion followed by a dilation of the image, i.e.
% @example
% B = imdilate(imerode(A, se), se);
% @end example
% @seealso{imdilate, imerode, imclose}
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003