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

  1. OPERATOR
  2.  
  3. burt --- generate a pyramid using Burt method
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The burt operator generates a sequence of n images I(i) such that image I(n) 
  9. is the result of applying n reduce operations to the input image. All other 
  10. images, I(i) where i ranges between 1 and n-1 , are differences between the 
  11. input image after i-1 reduce operations and the expanded version of the input 
  12. image after i reduce operations. Notationally, 
  13.     Let G[1] be the input image.
  14.     Let G[i] denote an image sequence where G[i] = reduce(G[i-1])
  15.     Then I[i] = G[i] - expand(reduce(G[i])).
  16.     Unless i == n, then I[n] = G[n].
  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.