home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / misc / sci / lynx / product-info < prev    next >
Fred Fish's Product-Info  |  1995-10-25  |  4KB  |  176 lines

  1. .name
  2. Lynx
  3. .type
  4. Image Processing
  5. .short
  6. Image Processing package. FFT processing
  7. .description
  8. Lynx is an image processing package.  Yet another?  Not exactly. Lynx is
  9. significantly different than others images processing packages availables
  10. for the Amiga.
  11.  
  12. For example, it can do the Fourier transformation and works in the frequency
  13. domain of the images.
  14.  
  15. It's the first one (I think !) which be able to work on 16 bits per pixel
  16. (per channel) images, that gives 65536 gray levels !
  17.  
  18. The main purpose of Lynx is scientific and it is able to process images in
  19. many domains:  Astronomy, physics, archeology...
  20.  
  21. Lynx can also execute some subjectives processes such as image composition,
  22. solarize effect, oil painting...
  23.  
  24. There are two versions: 8bits and 16bits. The first one is rather designed
  25. for subjective processing, while the second is rather for "serious" image
  26. processing !
  27.  
  28. Why ?
  29. ~~~~~
  30. In  the  beginning I would  process  some  astronomical images that I had
  31. released  with  a  CCD  camera, but there wasn't any software on the Amiga
  32. able  to  perform  some processes such as FFT transform, Gaussian filters,
  33. profile extraction and many others. So I'd decided to make my own program.
  34.  
  35. Capabilities
  36. ~~~~~~~~~~~~
  37. -Lynx can load and process as many images as possible (multiples buffers)
  38. -Up to 256 slices (channels) per image.
  39. -Add, delete, move slices between image buffers (stacks).
  40.  
  41. Input/Output
  42. --------------
  43. o Read the following images formats:
  44.     FITS (Flexible Image Transport System).
  45.     IFF 1-8 bitplans, IFF24.
  46.     Datatypes.
  47.     Lynx (own format).
  48.  
  49. o Write the following images formats:
  50.     FITS (Flexible Image Transport System).
  51.     IFF 2-8 bitplans, IFF24, HAM 6 or 8.
  52.     Lynx (own format).
  53.  
  54. Image Processing
  55. ----------------
  56. o Spatial domain:
  57.     Convolutions Matrix 3x3 & 5x5
  58.     Median filter (with control of efficiency and matrix design)
  59.     Minimum, maximum filters
  60.     Arithmetics operations
  61.     Transcode
  62.     Histogram Equalisation
  63.     Geometricals operations (Scale, Translate, Rotate, Dimensions)
  64.     Pixels corrections
  65.  
  66. o Spectral domain:
  67.     Fast Fourier Transform
  68.     Convolution
  69.     Deconvolution (Wiener filter)
  70.     Correlation
  71.     Filtering (Low-Pass, Band-Pass, High-pass, Gauss, Butterworth,
  72.                    Wavelet...)
  73.  
  74. Image analysis
  75. --------------
  76.      Histogram
  77.      Statistics
  78.      Pixel values
  79.      Profiles extractions
  80.      Photometric mesurements
  81.  
  82. Visualization
  83. -------------
  84.     Pseudo-color for monochromatic visualization.
  85.     True-color in 16-256 colors, HAM6 (old machines), HAM8 (AGA mach.)
  86.  
  87. Miscellaneous
  88. -------------
  89.         ARexx port.
  90.     Images composition
  91.     Color model transformations (RBG <-> HSV)
  92.     Statistics
  93.     Transcoding for visualization
  94.     Animations
  95. .version
  96. 1.01ß
  97. .date
  98. 1995.06.20
  99. .author
  100. Stéphane Poirier
  101. .requirements
  102. Requires OS 2.04+, 2.1+ for localization, 3.0+ for datatype usage
  103. .distribution
  104. Shareware
  105. .price
  106. $30 (US), DM 40, FR 150
  107. .address
  108. 20 avenue Claude Vellefaux
  109. 75010 Paris
  110. FRANCE
  111. .email
  112. poiries@asterix.saclay.cea.fr
  113. .tested
  114. - A4000/040
  115. - A1200 with/without FAST ram, coprocessor, accelerator card.
  116. - A3000
  117. - A500+
  118. .docs
  119. Readme
  120. Lisez-moi
  121. Lynx.guide
  122. .described-by
  123. Dan Fish (daf@starfish.amigalib.com)
  124. .submittal
  125. Downloaded via ftp from wuarchive.wustl.edu.
  126. .aminet-dir
  127. misc/sci
  128. .execute
  129. set choice `RequestChoice "Lynx" "Please select an option" "View ReadMe" "View Guide" "Install Program" "Run Program" "Cancel"`
  130. if $choice EQ "0"
  131.   quit 5
  132. endif
  133.  
  134. if $choice EQ "1"
  135.   set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
  136.   if $choice2 EQ "0"
  137.     quit 0
  138.   endif
  139.  
  140.   if $choice2 EQ "1"
  141.     MetaTool ReadMe TEXT
  142.   endif
  143.  
  144.   if $choice2 EQ "2"
  145.     MetaTool Lisez-moi TEXT
  146.   endif
  147. endif
  148.  
  149. if $choice EQ "2"
  150.   MetaTool Lynx.guide GUIDE
  151. endif
  152.  
  153. if $choice EQ "3"
  154.   set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
  155.   if $choice2 EQ "0"
  156.     quit 0
  157.   endif
  158.  
  159.   cd installation
  160.   if $choice2 EQ "1"
  161.     Installer "Install Lynx" Lynx MINUSER EXPERT LANGUAGE english
  162.   endif
  163.  
  164.   if $choice2 EQ "2"
  165.     Installer "Install Lynx" Lynx MINUSER EXPERT LANGUAGE français
  166.   endif
  167. endif
  168.  
  169. if $choice EQ "4"
  170.   assign lynx: ""
  171.   assign locale: "" ADD
  172.   assign fonts: fonts/ ADD
  173.   assign libs: libs/ ADD
  174.   Lynx-16
  175. endif
  176.