Image Processing Toolbox | ![]() ![]() |
Perform dilation on a binary image
Note
This function is obsolete and may be removed in future versions. Use imdilate instead.
|
Syntax
Description
BW2 = dilate(BW1,SE)
performs dilation on the binary image BW1
, using the binary structuring element SE
. SE
is a matrix containing only 1's and 0's.
BW2 = dilate(BW1,SE,
alg
)
performs dilation using the specified algorithm. alg
is a string that can have one of these values:
'spatial'
(default) - processes the image in the spatial domain.
'frequency'
- processes the image in the frequency domain.
Both algorithms produce the same result, but they make different trade-offs between speed and memory use. The frequency algorithm is faster for large images and structuring elements than the spatial algorithm, but uses much more memory.
BW2 = dilate(BW1,SE,...,n)
performs the dilation operation n
times.
Class Support
The input image BW1
can be of class double
or uint8
. The output image BW2
is of class uint8
.
Remarks
You should use the frequency algorithm only if you have a large amount of memory on your system. If you use this algorithm with insufficient memory, it may actually be slower than the spatial algorithm, due to virtual memory paging. If the frequency algorithm slows down your system excessively, or if you receive "out of memory" messages, use the spatial algorithm instead.
Example
See Also
References
[1] Gonzalez, Rafael C., and Richard E. Woods. Digital Image Processing. Addison-Wesley, 1992. p. 518.
[2] Haralick, Robert M., and Linda G. Shapiro. Computer and Robot Vision, Volume I. Addison-Wesley, 1992. p. 158.
![]() | dicomwrite | dither | ![]() |