home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / demo / wit4711 / lib / help / morpho / gdilate. / gdilate.bin
Text File  |  1995-12-09  |  1KB  |  30 lines

  1. OPERATOR
  2.  
  3. gdilate --- greyscale dilation
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The gdilate operator performs dilation on greyscale images, but unlike the 
  9. binary bdilate operator the greyscale dilation is performed by computing the 
  10. maximum value within every neighbourhood of the input image. As with dilation, 
  11. only those pixels whose corresponding kernel bits are set are used to 
  12. determine the local maxima. The kernel parameter allows the user to specify a 
  13. vector of integers corresponding to the structuring element to be applied to 
  14. the input image. The vector is treated as a binary input where all non-zero 
  15. values are considered to be equivalent to 1. For more on the use of the 
  16. kernel, consult the documentation or help for the berode and bdilate operators. 
  17.  
  18. Pixels beyond the image boundary are assumed to be the minimum value possible 
  19. for the type of image being processed. This means that they will have no 
  20. effect when dealing with a maxima calculation. 
  21.  
  22. Given a grayscale image I, the following identity holds for bdilate and 
  23. gdilate: 
  24.  
  25.  
  26.  
  27.    threshold(gdilate(I)) = bdilate(threshold(I))
  28.  
  29. 
  30.