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

  1. OPERATOR
  2.  
  3. zeroX --- zero crossing detector
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The zeroX operator finds zero crossings in the signed greyscale input image. 
  9. One of three types of zero crossings may be found: 
  10.   all
  11.   lo->hi
  12.   hi->lo
  13. 
  14.  
  15. When all zero crossings are desired, both low to high and high to low 
  16. transitions are marked if the zero crossing pass a contrast test. The test 
  17. ensures that the amplitudes of the high and low pixel values defining the 
  18. zero crossing are above and below the contrast value respectively. If lo->hi 
  19. or hi->lo options are selected then upgoing or downgoing zero crossings are 
  20. marked if the zero crossing meets a modified contrast test. The modified 
  21. contrast test searches backward and forward from a potential zero crossing 
  22. point to ensure the given contrast is present within the zxwidth . 
  23.  
  24. For example, if lo->hi transitions are desired then for each such transition 
  25. found, the algorithm will search backwards along the negative lobe (for not 
  26. more than zxwidth pixels) for a pixel less than the given contrast. If this 
  27. condition is met, then the algorithm searches forward along the positive lobe 
  28. (for not more than zxwidth pixels) for a pixel greater than the given 
  29. contrast. If this condition is met then the zero crossing is marked, 
  30. otherwise it is rejected. This detection technique is effective in dealing 
  31. with images which arose from edge detection that are too noisy for simple 
  32. zero crossing detection and would suffer in a loss of resolution if smoothing 
  33. were applied.