home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / sci / image / processi / 1749 < prev    next >
Encoding:
Text File  |  1993-01-28  |  1.9 KB  |  71 lines

  1. Newsgroups: sci.image.processing
  2. Path: sparky!uunet!pipex!doc.ic.ac.uk!agate!spool.mu.edu!sdd.hp.com!ux1.cso.uiuc.edu!usenet.ucs.indiana.edu!bigbang.astro.indiana.edu!turner
  3. From: turner@bigbang.astro.indiana.edu (George Wm Turner)
  4. Subject: Re: animation program for X11R4 inquiry
  5. Message-ID: <C1KMs1.35z@usenet.ucs.indiana.edu>
  6. Lines: 56
  7. Sender: news@usenet.ucs.indiana.edu (USENET News System)
  8. Nntp-Posting-Host: bigbang.astro.indiana.edu
  9. Reply-To: turner@bigbang.astro.indiana.edu (George Wm Turner)
  10. Organization: Astronomy / Indiana University / Home of RoboScope
  11. References: <1993Jan27.201322.19924@newshost.lanl.gov> <1k8932INNaq7@urmel.informatik.rwth-aachen.de>
  12. Distribution: usa
  13. Date: Thu, 28 Jan 1993 15:52:48 GMT
  14.  
  15.  
  16.  
  17. mov.c from ics.uci.edu (128.195.1.1) is a simple animator.  
  18. i have had some problems running on suns with openwindows but it works 
  19. fine on my suns with motif, dec stations, hp 730s, hp xterminals,
  20. p.c., etc.  here are the comments from the code :
  21.  
  22. geo@BigBang% more mov.c
  23.   
  24. /*
  25.  "mov" Portable X b/w movie viewer      5 Nov 92 
  26.  mov.c (c) 1992 David A. Honig 
  27.  Permission to propogate is granted iff you keep the copyright and
  28.  always disseminate the source as well. 
  29. */
  30.  
  31.  
  32. /* 
  33. Function: 
  34.   Display a headerless greyscale movie on an X display.
  35.  
  36.  
  37. Compilation: 
  38.   cc mov.c -lX11 -lm -o mov 
  39.   (This is pure Xlib C code.)
  40.  
  41.  
  42. Usage: 
  43.    mov < movie.raw [options]
  44.  
  45.    Options:
  46.    -w WIDTH
  47.    -h HEIGHT
  48.    -s SIZE (width=height=size)
  49.    -r FRAMERATE (fps)
  50.    -c CACHESIZE (pixmaps to get on the server; must be less than MAXMAPS)
  51.    -g GAMMA (float)
  52.    -b BIAS
  53.    -d debug mode
  54.    -n no numbers
  55.    -l seesaw looping 
  56.    -q digital subtraction
  57.    -y reduce 16->8s
  58.    -z use low byte of word (with -y)
  59.  
  60. Defaults:
  61.    256 x 256 image, 30 cached, 30 fps, gamma=1.0, bias=0
  62.  
  63.  
  64. Requires: 
  65.    X, 8-bit screen, width*height*CACHESIZE bytes of server memory.
  66.       Versions > .7 can deal with monochrome displays!
  67.  
  68. Inputs: headerless 8 or 16-bit image sequence (on stdin) 
  69.  
  70.  
  71.