home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / graphics / 9459 < prev    next >
Encoding:
Internet Message Format  |  1992-09-07  |  1.3 KB

  1. Path: sparky!uunet!charon.amdahl.com!pacbell.com!att-out!rutgers!munnari.oz.au!ariel!ucsvc.ucs.unimelb.edu.au!mits.com.au!alistair
  2. From: alistair@mits.com.au
  3. Newsgroups: comp.graphics
  4. Subject: Summary: Image negative to positive algorithm
  5. Message-ID: <1992Sep5.001852.3555@mits.com.au>
  6. Date: 5 Sep 92 05:18:52 GMT
  7. References: <1992Aug28.143906.3553@mits.com.au> <1992Sep1.093533.3554@mits.com.au>
  8. Lines: 35
  9.  
  10.  
  11.  alistair@mits.com.au (me) writes:
  12. > Does anyone have an algorithm for producing positive images from
  13. > negatives.
  14. > I would like scan in a photo negative and view it (which is much
  15. > faster and cheaper than making test prints, given that the scanner is
  16. > already there).
  17.  
  18. To convert grey scale:
  19.  
  20.     <new pixel value> = <white pixel value> - <old pixel value>
  21.  
  22. To convert colour images:
  23.  
  24.     <new red pixel value> = <max red pixel value> - <old red pixel value>
  25.     <new blue pixel value> = <max blue pixel value> - <old blue pixel value>
  26.     <new green pixel value> = <max green pixel value> - <old green pixel value>
  27.  
  28. The colour version seems to lose contrast and have an unwanted tinge. 
  29. We are currently trying to overcome this.
  30.  
  31. Thanks to everyone who has helped me, including:
  32.     Wade Schuette
  33.     Clifton Liles
  34.     Ken Yap
  35.     Sean Malloy
  36.     Brian Dockter
  37.  
  38. Thanks,
  39.  
  40. Alistair Grant
  41.  
  42. Internet:     alistair@mits.com.au
  43. Alternate:    alistair%mits.com.au@ucsvc.ucs.unimelb.edu.au
  44.