home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-25 | 4.1 KB | 176 lines |
- .name
- Lynx
- .type
- Image Processing
- .short
- Image Processing package. FFT processing
- .description
- Lynx is an image processing package. Yet another? Not exactly. Lynx is
- significantly different than others images processing packages availables
- for the Amiga.
-
- For example, it can do the Fourier transformation and works in the frequency
- domain of the images.
-
- It's the first one (I think !) which be able to work on 16 bits per pixel
- (per channel) images, that gives 65536 gray levels !
-
- The main purpose of Lynx is scientific and it is able to process images in
- many domains: Astronomy, physics, archeology...
-
- Lynx can also execute some subjectives processes such as image composition,
- solarize effect, oil painting...
-
- There are two versions: 8bits and 16bits. The first one is rather designed
- for subjective processing, while the second is rather for "serious" image
- processing !
-
- Why ?
- ~~~~~
- In the beginning I would process some astronomical images that I had
- released with a CCD camera, but there wasn't any software on the Amiga
- able to perform some processes such as FFT transform, Gaussian filters,
- profile extraction and many others. So I'd decided to make my own program.
-
- Capabilities
- ~~~~~~~~~~~~
- -Lynx can load and process as many images as possible (multiples buffers)
- -Up to 256 slices (channels) per image.
- -Add, delete, move slices between image buffers (stacks).
-
- Input/Output
- --------------
- o Read the following images formats:
- FITS (Flexible Image Transport System).
- IFF 1-8 bitplans, IFF24.
- Datatypes.
- Lynx (own format).
-
- o Write the following images formats:
- FITS (Flexible Image Transport System).
- IFF 2-8 bitplans, IFF24, HAM 6 or 8.
- Lynx (own format).
-
- Image Processing
- ----------------
- o Spatial domain:
- Convolutions Matrix 3x3 & 5x5
- Median filter (with control of efficiency and matrix design)
- Minimum, maximum filters
- Arithmetics operations
- Transcode
- Histogram Equalisation
- Geometricals operations (Scale, Translate, Rotate, Dimensions)
- Pixels corrections
-
- o Spectral domain:
- Fast Fourier Transform
- Convolution
- Deconvolution (Wiener filter)
- Correlation
- Filtering (Low-Pass, Band-Pass, High-pass, Gauss, Butterworth,
- Wavelet...)
-
- Image analysis
- --------------
- Histogram
- Statistics
- Pixel values
- Profiles extractions
- Photometric mesurements
-
- Visualization
- -------------
- Pseudo-color for monochromatic visualization.
- True-color in 16-256 colors, HAM6 (old machines), HAM8 (AGA mach.)
-
- Miscellaneous
- -------------
- ARexx port.
- Images composition
- Color model transformations (RBG <-> HSV)
- Statistics
- Transcoding for visualization
- Animations
- .version
- 1.01ß
- .date
- 1995.06.20
- .author
- Stéphane Poirier
- .requirements
- Requires OS 2.04+, 2.1+ for localization, 3.0+ for datatype usage
- .distribution
- Shareware
- .price
- $30 (US), DM 40, FR 150
- .address
- 20 avenue Claude Vellefaux
- 75010 Paris
- FRANCE
- .email
- poiries@asterix.saclay.cea.fr
- .tested
- - A4000/040
- - A1200 with/without FAST ram, coprocessor, accelerator card.
- - A3000
- - A500+
- .docs
- Readme
- Lisez-moi
- Lynx.guide
- .described-by
- Dan Fish (daf@starfish.amigalib.com)
- .submittal
- Downloaded via ftp from wuarchive.wustl.edu.
- .aminet-dir
- misc/sci
- .execute
- set choice `RequestChoice "Lynx" "Please select an option" "View ReadMe" "View Guide" "Install Program" "Run Program" "Cancel"`
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
- if $choice2 EQ "0"
- quit 0
- endif
-
- if $choice2 EQ "1"
- MetaTool ReadMe TEXT
- endif
-
- if $choice2 EQ "2"
- MetaTool Lisez-moi TEXT
- endif
- endif
-
- if $choice EQ "2"
- MetaTool Lynx.guide GUIDE
- endif
-
- if $choice EQ "3"
- set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
- if $choice2 EQ "0"
- quit 0
- endif
-
- cd installation
- if $choice2 EQ "1"
- Installer "Install Lynx" Lynx MINUSER EXPERT LANGUAGE english
- endif
-
- if $choice2 EQ "2"
- Installer "Install Lynx" Lynx MINUSER EXPERT LANGUAGE français
- endif
- endif
-
- if $choice EQ "4"
- assign lynx: ""
- assign locale: "" ADD
- assign fonts: fonts/ ADD
- assign libs: libs/ ADD
- Lynx-16
- endif
-