The LSM_Reader is ImageJ's plugin for reading Zeiss LSM confocal images.
Patrick Pirrotte: programming, project maintainer (patrick@image-archive.org)
Jerome Mutterer: testing, documentation, debugging (jerome.mutterer@ibmp-ulp.u-strasbg.fr)
Yannick Krempp
These features have been implemented in the LSM_Reader version 4.0c:
open compressed images (YES it finally works!!!)
opens images as hyperstacks
scantype 1 to 7 supported, e.g. Normal x-y-z scan, Z-scan, Line scan, Time series X-Y, Time series X-Y, Time series - Means of ROIs, Time series x-y-z scan
compatible with 8, 12 and 16 bit LSM images
image preview window when opening, shows first image of first image directory from the file
Actual version: 4.0c, bundled with ImageJ 1.39u
To previous users of LSM_Reader:
The LSM_Reader is provided with the standard installation of ImageJ since v1.36. It's sole
role is to extend ImageJ to recognize Zeiss LSM files and to open them correctly. !!!
IT DOES NOT CONTAIN ANY GUI!!! Those enhanced features are available in it's daughter project,
the LSMToolbox, which can be found here. An old manual can be found here.
LSM_Reader 4.0c is bundled with ImageJ >= 1.39u
Full versions of Image between >1.37 and <1.39uare bundled with LSM_Reader 4.0b
Full versions of ImageJ 1.37 are bundled with LSM_Reader 4.0a
Full versions of ImageJ >=1.36b and <1.37 are bundled LSM_Reader 3.2g (you should upgrade
Handle_Extra_File_Types).
You are advised to upgrade your LSM_Reader to 4.0c as several bugs have been fixed. ImageJ 1.39u is required.
The LSM_Reader is packaged as jar file.
The LSM_Reader is subjected to the GPL v2 which you can read here. The source is included in the jar file.
v4.0f 2009/06/18
v4.0e 2008/11/02
v4.0d 2008/04/22
v4.0c 2008/03/07
several bug fixes (String reading)
opens images as hyperstacks instead of a series of ImagePlus
press “i” (Image→Show Info) to display metadata. For more metadata, use LSM_Toobox.
v4. 0b
v4.0
v3.2g 2005/10/19
v3.2f 2005/07/21
Adds support for time events detection. There is now a time event window that opens together with the image if it is a time series, and this text is tab separated and can be saved in .txt format. YK
The stamps color is now fixed and is more visible. YK
The infos panel can now also be dumped to a text file. YK
Fixed the Batchmode issue pointed by Wayne. JM
v3.2e 2005/07/19
v3.2d 2003/12/01
// Zeiss Confocal LSM 510 image file (.lsm) handler
// http://rsb.info.nih.gov/ij/plugins/
if (name.endsWith(".lsm")) {
// Open LSM image and display it
IJ.runPlugIn("LSM_Reader", path);
// Set flag so Opener.openImage() does not display error
width = IMAGE_OPENED;
return null;
}
v3.2c 2003/12/01
Adds the “Batch Convert” method. This method allows the batch conversion of an entire directory of lsm files into various usual file format : tiff, 8-bit tiff, jpeg, raw, zip. This converter handles also stacks and lambda stacks by saving one image for each slice of the stack. Credits for the base batch conversion method goes for Wayne Rasband, wayne@codon.nih.gov, many thanks for his kind collaboration. JM
v3.2b 2003/05/16
v3.2 2003/04/22
Handles v3.0 LSM files respectively
AIM v3.2 files, SCANINFO structure is read entirely and shown in a JTree / property viewer. Filtered view (only viewing open channels) and general view. Uknown tags are also shown. Linking with Lut_Panel plugin if present. PP
v3.0 2003/04/22
SCANINFO structure present in every LSM file, contains some very interesting information. Dumping of that structure is now possible. Unknown tags are shown separately. Linking with HyperVolume_Browser plugin if present. Added support for spectral images. Complete file reading rehaul. As soon as Unisys's license expires, a new version with LZW-compressed
TIFF support should be available. PP
v2.2 2003/01/23
v1.2 2002/09/16
v1.1 2002/07/16
Contact Patrick or Jerome if you find any bugs or if you'd like to see a feature appear in a new release. It's easier for us to debug if you send us one of your images which cause the problem.
— Patrick Pirotte 2008/10/02 13:36
Back to top