home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / demo / wit4711 / lib / help / pyramid / fsd. / fsd.bin
Text File  |  1995-12-09  |  998b  |  25 lines

  1. OPERATOR
  2.  
  3. fsd --- generate a pyramid using FSD method
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The fsd operator generates two image sequences G(i) and L(i). The sequence 
  9. G(i) that is output on the top port is a Gaussian pyramid and is identical 
  10. to that which would be generated by the gaussPyramid operator. The sequence 
  11. L(i) is a Laplacian pyramid and is output on the bottom port. Each image, 
  12. L(i) is a difference between image G(i) and the filtered version of G(i). 
  13. Notationally, 
  14.     G[1] = input image
  15.     G[i] = reduce(G[i-1]) for i > 1.
  16.     L[i] = G[i] - gauss(G[i])
  17. 
  18.  
  19. The filter parameter selects the type of gaussian filter to be applied. 
  20. Currently, the user cannot define his own filters. The effect of each filter 
  21. is described in the WIT filter library during the discussion of the gauss 
  22. operator. The minsize parameter defines the minimum size that an image G(i) 
  23. can be before a reduce operation will not be performed and pyramid generation 
  24. will terminate. 
  25.