| Package | Description | 
|---|---|
| loci.formats | Bio-Formats: a library for reading and writing popular microscopy file
formats. | 
| loci.formats.cache | Package containing Bio-Formats caching logic, for managing
subsets of large collections of image planes in memory. | 
| loci.formats.gui | Package containing Bio-Formats graphical user interface code. | 
| loci.formats.in | Package containing Bio-Formats file format readers. | 
| loci.formats.tools | Package containing utility methods corresponding
to the Bio-Formats command line tools. | 
| loci.plugins.in | Bio-Formats Importer plugin for ImageJ. | 
| loci.plugins.macro | Bio-Formats Macro Extensions plugin for ImageJ. | 
| loci.plugins.util | Utility classes and methods for the Bio-Formats plugins for ImageJ. | 
| loci.tests.testng | Package for automated testing of the Bio-Formats software packages using TestNG. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ChannelFillerFor indexed color data representing true color, factors out
 the indices, replacing them with the color table values directly. | 
| class  | ChannelMergerLogic to automatically merge channels in a file. | 
| class  | ChannelSeparatorLogic to automatically separate the channels in a file. | 
| class  | DelegateReaderDelegateReader is a file format reader that selects which reader to use
 for a format if there are two readers which handle the same format. | 
| class  | DimensionSwapperHandles swapping the dimension order of an image series. | 
| class  | FileStitcherLogic to stitch together files with similar names. | 
| class  | FormatReaderAbstract superclass of all biological file format readers. | 
| class  | ImageReaderImageReader is the master file format reader for all supported formats. | 
| class  | MemoizerReaderWrapperimplementation which caches the state of the
 delegate (including and otherReaderWrapperinstances)
 afterMemoizer.setId(String)has been called. | 
| class  | MinMaxCalculatorLogic to compute minimum and maximum values for each channel. | 
| class  | ReaderWrapperAbstract superclass of reader logic that wraps other readers. | 
| class  | TileStitcher | 
| Modifier and Type | Field and Description | 
|---|---|
| protected IFormatReader | DelegateReader. legacyReaderLegacy reader. | 
| protected IFormatReader | DelegateReader. nativeReaderNative reader. | 
| protected IFormatReader | ReaderWrapper. readerFormatReader used to read the file. | 
| private IFormatReader[] | ImageReader. readersList of supported file format readers. | 
| Modifier and Type | Field and Description | 
|---|---|
| private ClassList<IFormatReader> | FileStitcher. classList | 
| private static ClassList<IFormatReader> | ImageReader. defaultClassesDefault list of reader classes, for use with noargs constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| IFormatReader | FileStitcher. getReader()Gets the wrapped reader prototype. | 
| IFormatReader | ReaderWrapper. getReader()Gets the wrapped reader. | 
| IFormatReader | ImageReader. getReader()Gets the reader used to open the current file. | 
| IFormatReader | ImageReader. getReader(Class<? extends IFormatReader> c)Gets the file format reader instance matching the given class. | 
| static IFormatReader | FormatTools. getReader(IFormatReader r,
         Class<? extends IFormatReader> c)Recursively look for the first underlying reader that is an
 instance of the given class. | 
| IFormatReader | FileStitcher. getReader(int no)Gets the reader appropriate for use with the given image plane. | 
| IFormatReader | ImageReader. getReader(String id)Gets the reader used to open the given file. | 
| IFormatReader[] | ImageReader. getReaders()Gets all constituent file format readers. | 
| IFormatReader[] | FileStitcher. getUnderlyingReaders() | 
| IFormatReader[] | ReaderWrapper. getUnderlyingReaders() | 
| IFormatReader[] | IFormatReader. getUnderlyingReaders()Retrieves all underlying readers. | 
| IFormatReader[] | ImageReader. getUnderlyingReaders() | 
| IFormatReader[] | FormatReader. getUnderlyingReaders() | 
| protected IFormatReader | Memoizer. handleMetadataStore(IFormatReader memo)Return the  IFormatReaderinstance that is passed in or null if
 it has been invalidated, which will include the instance being closed. | 
| IFormatReader | Memoizer. loadMemo()Load a memo file if possible, returning a null if not. | 
| IFormatReader | Memoizer.Deser. loadReader() | 
| IFormatReader | Memoizer.KryoDeser. loadReader() | 
| IFormatReader | Memoizer.RandomAccessDeser. loadReader() | 
| protected abstract IFormatReader | Memoizer.RandomAccessDeser. readerFromBytes(Class<IFormatReader> c,
               byte[] rArr) | 
| IFormatReader | ReaderWrapper. unwrap()Unwraps nested wrapped readers until the core reader (i.e., not
 a  ReaderWrapperorImageReader) is found. | 
| IFormatReader | ReaderWrapper. unwrap(Class<? extends IFormatReader> readerClass,
      String id)Unwraps nested wrapped readers until the given reader class is found. | 
| IFormatReader | ReaderWrapper. unwrap(String id)Unwraps nested wrapped readers until the core reader (i.e., not
 a  ReaderWrapperorImageReader) is found. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ClassList<IFormatReader> | ImageReader. getDefaultReaderClasses() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected abstract byte[] | Memoizer.RandomAccessDeser. bytesFromReader(IFormatReader reader) | 
| static void | FormatTools. checkBufferSize(IFormatReader r,
               int len) | 
| static void | FormatTools. checkBufferSize(IFormatReader r,
               int len,
               int w,
               int h)Checks that the given buffer size is large enough to hold a w * h
 image as returned by the given reader. | 
| static void | FormatTools. checkPlaneNumber(IFormatReader r,
                int no)Checks that the given plane number is valid for the given reader. | 
| static void | FormatTools. checkPlaneParameters(IFormatReader r,
                    int no,
                    int bufLength,
                    int x,
                    int y,
                    int w,
                    int h)Convenience method for checking that the plane number, tile size and
 buffer sizes are all valid for the given reader. | 
| static void | FormatTools. checkTileSize(IFormatReader r,
             int x,
             int y,
             int w,
             int h)Checks that the given tile size is valid for the given reader. | 
| CoreMetadata | SwappableMetadata. clone(IFormatReader r,
     int coreIndex) | 
| CoreMetadata | CoreMetadata. clone(IFormatReader r,
     int coreIndex) | 
| static void | FormatTools. convert(IFormatReader input,
       IFormatWriter output,
       String outputFile)Convenience method for writing all of the images and metadata obtained
 from the specified IFormatReader into the specified IFormatWriter. | 
| static boolean | FormatTools. equalReaders(IFormatReader a,
            IFormatReader b)Check if the two given readers are equal. | 
| static String | FormatTools. getFilename(int series,
           int image,
           IFormatReader r,
           String pattern) | 
| static String[] | FormatTools. getFilenames(String pattern,
            IFormatReader r) | 
| static int | FormatTools. getImagesPerFile(String pattern,
                IFormatReader r) | 
| static int | FormatTools. getIndex(IFormatReader reader,
        int z,
        int c,
        int t)Gets the rasterized index corresponding
 to the given Z, C and T coordinates (real sizes). | 
| static int | FormatTools. getIndex(IFormatReader reader,
        int z,
        int c,
        int t,
        int moduloZ,
        int moduloC,
        int moduloT)Gets the rasterized index corresponding to the given Z, C, T,
 ModuloZ, ModuloC and ModuloT coordinates (effective sizes). | 
| static int | FormatTools. getPlaneSize(IFormatReader r)Returns the size in bytes of a single plane. | 
| static int | FormatTools. getPlaneSize(IFormatReader r,
            int w,
            int h)Returns the size in bytes of a w * h tile. | 
| static IFormatReader | FormatTools. getReader(IFormatReader r,
         Class<? extends IFormatReader> c)Recursively look for the first underlying reader that is an
 instance of the given class. | 
| static int | FormatTools. getReorderedIndex(IFormatReader reader,
                 String newOrder,
                 int newIndex)Converts index from the given dimension order to the reader's native one. | 
| static int[] | FormatTools. getZCTCoords(IFormatReader reader,
            int index)Gets the Z, C and T coordinates corresponding
 to the given rasterized index value (real sizes). | 
| static int[] | FormatTools. getZCTModuloCoords(IFormatReader reader,
                  int index)Gets the Z, C, T, ModuloZ, ModuloC and ModuloZ coordinates
 corresponding to the given rasterized index value (effective
 sizes). | 
| protected IFormatReader | Memoizer. handleMetadataStore(IFormatReader memo)Return the  IFormatReaderinstance that is passed in or null if
 it has been invalidated, which will include the instance being closed. | 
| static boolean | FormatTools. isFloatingPoint(IFormatReader reader)Determines whether the given reader represents any floating point data. | 
| static ChannelFiller | ChannelFiller. makeChannelFiller(IFormatReader r)Converts the given reader into a ChannelFiller, wrapping if needed. | 
| static ChannelMerger | ChannelMerger. makeChannelMerger(IFormatReader r)Converts the given reader into a ChannelMerger, wrapping if needed. | 
| static ChannelSeparator | ChannelSeparator. makeChannelSeparator(IFormatReader r)Converts the given reader into a ChannelSeparator, wrapping if needed. | 
| static DimensionSwapper | DimensionSwapper. makeDimensionSwapper(IFormatReader r)Converts the given reader into a DimensionSwapper, wrapping if needed. | 
| static MinMaxCalculator | MinMaxCalculator. makeMinMaxCalculator(IFormatReader r)Converts the given reader into a MinMaxCalculator, wrapping if needed. | 
| static TileStitcher | TileStitcher. makeTileStitcher(IFormatReader r)Converts the given reader into a TileStitcher, wrapping if needed. | 
| static byte[] | FormatTools. openThumbBytes(IFormatReader reader,
              int no)Default implementation for  openThumbBytes(int). | 
| static void | MetadataTools. populatePixels(MetadataStore store,
              IFormatReader r)Populates the 'pixels' element of the given metadata store, using core
 metadata from the given reader. | 
| static void | MetadataTools. populatePixels(MetadataStore store,
              IFormatReader r,
              boolean doPlane)Populates the 'pixels' element of the given metadata store, using core
 metadata from the given reader. | 
| static void | MetadataTools. populatePixels(MetadataStore store,
              IFormatReader r,
              boolean doPlane,
              boolean doImageName)Populates the 'pixels' element of the given metadata store, using core
 metadata from the given reader. | 
| static void | MetadataTools. populatePixelsOnly(MetadataStore store,
                  IFormatReader r) | 
| void | Memoizer.Deser. saveReader(IFormatReader reader) | 
| void | Memoizer.KryoDeser. saveReader(IFormatReader reader) | 
| void | Memoizer.RandomAccessDeser. saveReader(IFormatReader reader) | 
| Modifier and Type | Method and Description | 
|---|---|
| ReaderWrapper | ReaderWrapper. duplicate(Class<? extends IFormatReader> imageReaderClass)Performs a deep copy of the reader, including nested wrapped readers. | 
| private ReaderWrapper | ReaderWrapper. duplicateRecurse(Class<? extends IFormatReader> imageReaderClass) | 
| IFormatReader | ImageReader. getReader(Class<? extends IFormatReader> c)Gets the file format reader instance matching the given class. | 
| static IFormatReader | FormatTools. getReader(IFormatReader r,
         Class<? extends IFormatReader> c)Recursively look for the first underlying reader that is an
 instance of the given class. | 
| protected abstract IFormatReader | Memoizer.RandomAccessDeser. readerFromBytes(Class<IFormatReader> c,
               byte[] rArr) | 
| void | FileStitcher. setReaderClassList(ClassList<IFormatReader> classList)Set the ClassList object to use when constructing any helper readers. | 
| IFormatReader | ReaderWrapper. unwrap(Class<? extends IFormatReader> readerClass,
      String id)Unwraps nested wrapped readers until the given reader class is found. | 
| Constructor and Description | 
|---|
| ChannelFiller(IFormatReader r)Constructs a ChannelFiller with a given reader. | 
| ChannelMerger(IFormatReader r)Constructs a ChannelMerger with the given reader. | 
| ChannelSeparator(IFormatReader r)Constructs a ChannelSeparator with the given reader. | 
| CoreMetadata(IFormatReader r,
            int coreIndex) | 
| DimensionSwapper(IFormatReader r)Constructs a DimensionSwapper with the given reader. | 
| FileStitcher(IFormatReader r)Constructs a FileStitcher with the given reader. | 
| FileStitcher(IFormatReader r,
            boolean patternIds)Constructs a FileStitcher with the given reader. | 
| Memoizer(IFormatReader r)Constructs a memoizer around the given  IFormatReadercreating
  memo files under the same directory as the original file only if the
  call toMemoizer.setId(java.lang.String)takes longer than
  100L in milliseconds. | 
| Memoizer(IFormatReader r,
        long minimumElapsed)Constructs a memoizer around the given  IFormatReadercreating
  memo files under the same directory as the original file only if the
  call toMemoizer.setId(java.lang.String)takes longer thanminimumElapsedin
  milliseconds. | 
| Memoizer(IFormatReader r,
        long minimumElapsed,
        File directory)Constructs a memoizer around the given  IFormatReadercreating
  memo files under thedirectoryargument including the full path
  of the original file only if the call toMemoizer.setId(java.lang.String)takes longer thanminimumElapsedin milliseconds. | 
| MinMaxCalculator(IFormatReader r)Constructs a MinMaxCalculator with the given reader. | 
| ReaderWrapper(IFormatReader r)Constructs a reader wrapper around the given reader. | 
| SwappableMetadata(IFormatReader r,
                 int seriesNo) | 
| TileStitcher(IFormatReader r)Constructs a TileStitcher with the given reader. | 
| Constructor and Description | 
|---|
| ImageReader(ClassList<IFormatReader> classList)Constructs a new ImageReader from the given list of reader classes. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected IFormatReader | CacheSource. readerReader from which to draw image planes. | 
| Constructor and Description | 
|---|
| ByteArraySource(IFormatReader r)Constructs a byte array source from the given Bio-Formats reader. | 
| CacheSource(IFormatReader r)Constructs a cache source from the given Bio-Formats reader. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | BufferedImageReaderA reader wrapper for reading image planes as BufferedImage objects. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected IFormatReader | ImageViewer. fileReaderReader for files on disk. | 
| protected IFormatReader | ImageViewer. in | 
| private IFormatReader | FormatFileFilter. readerAssociated file format reader. | 
| Modifier and Type | Method and Description | 
|---|---|
| IFormatReader | FormatFileFilter. getReader()Returns the filter's reader. | 
| Modifier and Type | Method and Description | 
|---|---|
| static BufferedImageReader | BufferedImageReader. makeBufferedImageReader(IFormatReader r)Converts the given reader into a BufferedImageReader, wrapping if needed. | 
| protected void | ImageViewer. open(String id,
    IFormatReader r)Opens from the given data source using the specified reader
 in a separate thread. | 
| static BufferedImage | AWTImageTools. openImage(byte[] buf,
         IFormatReader r,
         int w,
         int h)Creates an image from the given byte array, using the given
 IFormatReader to retrieve additional information. | 
| void | ImageViewer. setImages(IFormatReader reader,
         BufferedImage[] img)Sets the viewer to display the given images, obtaining
 corresponding core metadata from the specified format reader. | 
| Constructor and Description | 
|---|
| BufferedImageReader(IFormatReader r)Constructs a BufferedImageReader with the given reader. | 
| BufferedImageSource(IFormatReader reader) | 
| FormatFileFilter(IFormatReader reader)Constructs a new filter that accepts files of the given reader's type. | 
| FormatFileFilter(IFormatReader reader,
                boolean allowOpen)Constructs a new filter that accepts files of the given reader's type,
 allowing the reader to open files only if the allowOpen flag is set. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AFIReaderAFIReader is the file format reader for Aperio AFI files. | 
| class  | AIMReaderAIMReader is the file format reader for .aim files. | 
| class  | AliconaReaderAliconaReader is the file format reader for Alicona AL3D files. | 
| class  | AmiraReaderThis is a file format reader for AmiraMesh data. | 
| class  | AnalyzeReaderAnalyzeReader is the file format reader for Analyze 7.5 files. | 
| class  | APLReaderAPLReader is the file format reader for Olympus APL files. | 
| class  | APNGReaderAPNGReader is the file format reader for
 Animated Portable Network Graphics (APNG) images. | 
| class  | ARFReaderARFReader is the file format reader for Axon Raw Format (ARF) files,
 produced by INDEC BioSystems's
 Imaging Workbench
 software. | 
| class  | AVIReaderAVIReader is the file format reader for AVI files. | 
| class  | BaseTiffReaderBaseTiffReader is the superclass for file format readers compatible with
 or derived from the TIFF 6.0 file format. | 
| class  | BaseZeissReaderBaseZeissReader contains common functionality required by
 readers for Zeiss AxioVision formats. | 
| class  | BDReaderBDReader is the file format reader for BD Pathway datasets. | 
| class  | BIFormatReaderBIFormatReader is the superclass for file format readers
 that use java.awt.image.BufferedImage as the native data type. | 
| class  | BioRadGelReaderBioRadGelReader is the file format reader for Bio-Rad gel files. | 
| class  | BioRadReaderBioRadReader is the file format reader for Bio-Rad PIC files. | 
| class  | BioRadSCNReaderBioRadSCNReader is the reader for Bio-Rad .scn files | 
| class  | BMPReaderBMPReader is the file format reader for Microsoft Bitmap (BMP) files. | 
| class  | BrukerReaderBrukerReader is the file format reader for Bruker MRI files. | 
| class  | BurleighReaderBurleighReader is the file format reader for Burleigh .img files. | 
| class  | CanonRawReaderCanonRawReader is the file format reader for Canon RAW files. | 
| class  | CellH5ReaderReader for CellH5 (HDF) files. | 
| class  | CellomicsReaderReader for Cellomics C01 files. | 
| class  | CellSensReaderCellSensReader is the file format reader for cellSens .vsi files. | 
| class  | CellVoyagerReaderA bioformat reader for the Yokagawa Cellvoyager CV1000 automated microscope (
 http://www.yokogawa.com/scanner/products/cv1000e.htm). | 
| class  | CellWorxReaderCellWorxReader is the file format reader for CellWorx .pnl files. | 
| class  | DeltavisionReaderDeltavisionReader is the file format reader for Deltavision files. | 
| class  | DicomReaderDicomReader is the file format reader for DICOM files. | 
| class  | DNGReaderDNGReader is the file format reader for Canon DNG (TIFF) files. | 
| class  | Ecat7ReaderEcat7Reader is the file format reader for ECAT 7 files. | 
| class  | EPSReaderReader is the file format reader for Encapsulated PostScript (EPS) files. | 
| class  | FakeReaderFakeReader is the file format reader for faking input data. | 
| class  | FEIReaderFEIReader is the file format reader for FEI and Philips .img files. | 
| class  | FEITiffReaderFEITiffReader is the file format reader for TIFF files produced by various
 FEI software. | 
| class  | FilePatternReader | 
| class  | FitsReaderFitsReader is the file format reader for
 Flexible Image Transport System (FITS) images. | 
| class  | FlexReaderFlexReader is a file format reader for Evotec Flex files. | 
| class  | FlowSightReader | 
| class  | FluoviewReaderFluoviewReader is the file format reader for
 Olympus Fluoview TIFF files AND Andor Bio-imaging Division (ABD) TIFF files. | 
| class  | FujiReaderFujiReader is the file format reader for Fuji LAS 3000 datasets. | 
| class  | FV1000ReaderFV1000Reader is the file format reader for Fluoview FV 1000 OIB and
 Fluoview FV 1000 OIF files. | 
| class  | GatanDM2ReaderGatanDM2Reader is the file format reader for Gatan .dm2 files. | 
| class  | GatanReaderGatanReader is the file format reader for Gatan files. | 
| class  | GelReaderGelReader is the file format reader for
 Molecular Dynamics GEL TIFF files. | 
| class  | GIFReaderGIFReader is the file format reader for Graphics Interchange Format
 (GIF) files. | 
| class  | HamamatsuVMSReaderHamamatsuVMSReader is the file format reader for Hamamatsu VMS datasets. | 
| class  | HISReaderHISReader is the file format reader for Hamamatsu .his files. | 
| class  | HitachiReaderHitachiReader is the file format reader for S-4800 files. | 
| class  | HRDGDFReaderHRDGDFReader is the file format reader for the Gridded Data Format used
 by NOAA's Hurricane Research Division. | 
| class  | I2IReaderI2IReader is the file format reader for I2I files. | 
| class  | ICSReaderICSReader is the file format reader for ICS (Image Cytometry Standard)
 files. | 
| class  | IM3Reader | 
| class  | ImaconReaderImaconReader is the file format reader for Imacon .fff (TIFF) files. | 
| class  | ImageIOReaderImageIOReader is the superclass for file format readers
 that use the javax.imageio package. | 
| class  | ImagicReaderImagicReader is the file format reader for IMAGIC files. | 
| class  | ImarisHDFReaderReader for Bitplane Imaris 5.5 (HDF) files. | 
| class  | ImarisReaderImarisReader is the file format reader for Bitplane Imaris files. | 
| class  | ImarisTiffReaderImarisTiffReader is the file format reader for
 Bitplane Imaris 3 files (TIFF variant). | 
| class  | IMODReaderReader for IMOD binary files. | 
| class  | ImprovisionTiffReaderImprovisionTiffReader is the file format reader for
 Improvision TIFF files. | 
| class  | ImspectorReaderImspectorReader is the file format reader for Imspector .msr files. | 
| class  | InCell3000ReaderInCell3000Reader is the file format reader for InCell 3000. | 
| class  | InCellReaderInCellReader is the file format reader for InCell 1000/2000 datasets. | 
| class  | INRReaderINRReader is the file format reader for INR files. | 
| class  | InveonReaderInveonReader is the file format reader for Inveon files. | 
| class  | IPLabReaderIPLabReader is the file format reader for IPLab (.IPL) files. | 
| class  | IPWReaderIPWReader is the file format reader for Image-Pro Workspace (IPW) files. | 
| class  | IvisionReaderIvisionReader is the file format reader for IVision (.IPM) files. | 
| class  | JEOLReaderJEOLReader is the file format reader for JEOL files. | 
| class  | JPEG2000ReaderJPEG2000Reader is the file format reader for JPEG-2000 images. | 
| class  | JPEGReaderJPEGReader is the file format reader for JPEG images. | 
| (package private) static class  | JPEGReader.DefaultJPEGReader | 
| class  | JPKReaderJPKReader is the file format reader for JPK Instruments files. | 
| class  | JPXReaderJPXReader is the file format reader for JPX (3D JPEG-2000) images. | 
| class  | KhorosReaderReader for Khoros XV files. | 
| class  | KodakReaderKodakReader is the file format reader for Kodak Molecular Imaging .bip files. | 
| class  | L2DReaderL2DReader is the file format reader for Li-Cor L2D datasets. | 
| class  | LegacyND2ReaderLegacyND2Reader is a file format reader for Nikon ND2 files that uses
 the Nikon ND2 SDK - it is only usable on Windows machines. | 
| class  | LegacyQTReaderLegacyQTReader is a file format reader for QuickTime movie files. | 
| class  | LeicaReaderLeicaReader is the file format reader for Leica files. | 
| class  | LeicaSCNReaderLeicaSCNReader is the file format reader for Leica SCN TIFF files. | 
| class  | LEOReaderLEOReader is the file format reader for LEO EM files. | 
| class  | LiFlimReaderLiFlimReader is the file format reader for LI-FLIM files. | 
| class  | LIFReaderLIFReader is the file format reader for Leica LIF files. | 
| class  | LIMReaderLIMReader is the file format reader for Laboratory Imaging/Nikon LIM files. | 
| class  | MetamorphReaderReader is the file format reader for Metamorph STK files. | 
| class  | MetamorphTiffReaderMetamorphTiffReader is the file format reader for TIFF files produced by
 Metamorph software version 7.5 and above. | 
| class  | MIASReaderMIASReader is the file format reader for Maia Scientific MIAS-2 datasets. | 
| class  | MicromanagerReaderMicromanagerReader is the file format reader for Micro-Manager files. | 
| class  | MINCReaderMINCReader is the file format reader for MINC MRI files. | 
| class  | MinimalTiffReaderMinimalTiffReader is the superclass for file format readers compatible with
 or derived from the TIFF 6.0 file format. | 
| class  | MNGReaderMNGReader is the file format reader for Multiple Network Graphics (MNG)
 files. | 
| class  | MolecularImagingReaderMolecularImagingReader is the file format reader for Molecular Imaging files. | 
| class  | MRCReaderMRCReader is the file format reader for MRC files. | 
| class  | MRWReaderMRWReader is the file format reader for Minolta MRW files. | 
| class  | NAFReaderNAFReader is the file format reader for Hamamatsu Aquacosmos NAF files. | 
| class  | NativeND2ReaderNativeND2Reader is the file format reader for Nikon ND2 files. | 
| class  | NativeQTReaderNativeQTReader is the file format reader for QuickTime movie files. | 
| class  | ND2ReaderND2Reader is the file format reader for Nikon ND2 files. | 
| class  | NDPIReaderNDPIReader is the file format reader for Hamamatsu .ndpi files. | 
| class  | NDPISReaderNDPISReader is the file format reader for Hamamatsu .ndpis files. | 
| class  | NiftiReaderNiftiReader is the file format reader for NIfTI files. | 
| class  | NikonElementsTiffReaderNikonElementsTiffReader is the file format reader for TIFF files produced
 by Nikon Elements. | 
| class  | NikonReaderNikonReader is the file format reader for Nikon NEF (TIFF) files. | 
| class  | NikonTiffReaderNikonTiffReader is the file format reader for Nikon TIFF files. | 
| class  | NRRDReaderFile format reader for NRRD files; see http://teem.sourceforge.net/nrrd. | 
| class  | OBFReaderOBFReader is the file format reader for Imspector OBF files. | 
| class  | OMETiffReaderOMETiffReader is the file format reader for
 OME-TIFF
 files. | 
| class  | OMEXMLReaderOMEXMLReader is the file format reader for OME-XML files. | 
| class  | OpenlabRawReaderOpenlabRawReader is the file format reader for Openlab RAW files. | 
| class  | OpenlabReaderOpenlabReader is the file format reader for Openlab LIFF files. | 
| class  | OperettaReaderOperettaReader is the file format reader for PerkinElmer Operetta data. | 
| class  | OxfordInstrumentsReaderOxfordInstrumentsReader is the file format reader for
 Oxford Instruments .top files. | 
| class  | PCIReaderPCIReader is the file format reader for SimplePCI (Compix) .cxd files. | 
| class  | PCORAWReaderPCORAWReader is the file format reader for PCORAW files. | 
| class  | PCXReaderPCXReader is the file format reader for PCX files (originally used by
 PC Paintbrush; now used in Zeiss' LSM Image Browser). | 
| class  | PDSReaderPDSReader is the file format reader for Perkin Elmer densitometer files. | 
| class  | PerkinElmerReaderPerkinElmerReader is the file format reader for PerkinElmer files. | 
| class  | PGMReaderPGMReader is the file format reader for Portable Gray Map (PGM) images. | 
| class  | PhotoshopTiffReaderPhotoshopTiffReader is the file format reader for
 Adobe Photoshop TIFF files. | 
| class  | PictReaderPictReader is the file format reader for Apple PICT files. | 
| class  | PovrayReaderPovrayReader is the file format reader for POV-Ray .df3 files. | 
| class  | PQBinReaderPQBinReader is the file format reader for PicoQuant .bin files. | 
| class  | PrairieReaderPrairieReader is the file format reader for
 Prairie Technologies' TIFF variant. | 
| class  | PSDReaderPSDReader is the file format reader for Photoshop PSD files. | 
| class  | PyramidTiffReaderPyramidTiffReader is the file format reader for pyramid TIFFs. | 
| class  | QTReaderQTReader is the file format reader for QuickTime movie files. | 
| class  | QuesantReaderQuesantReader is the file format reader for Quesant .afm files. | 
| class  | RHKReaderRHKReader is the file format reader for RHK Technologies files. | 
| class  | SBIGReaderSBIGReader is the file format reader for SBIG files. | 
| class  | ScanrReaderScanrReader is the file format reader for Olympus ScanR datasets. | 
| class  | ScreenReaderScreenReader is a generic reader for files in non-HCS formats that have been
 organized into a screen. | 
| class  | SDTReaderSDTReader is the file format reader for
 Becker & Hickl SPC-Image SDT files. | 
| class  | SeikoReaderSeikoReader is the file format reader for Seiko .xqd/.xqf files. | 
| class  | SEQReaderSEQReader is the file format reader for Image-Pro Sequence files. | 
| class  | SIFReaderSIFReader is the file format reader for Andor SIF files. | 
| class  | SimplePCITiffReaderSimplePCITiffReader is the file format reader for TIFF files produced by
 SimplePCI software. | 
| class  | SISReaderSISReader is the file format reader for Olympus Soft Imaging Solutions
 TIFF files. | 
| class  | SlidebookReaderSlidebookReader is the file format reader for 3I Slidebook files. | 
| class  | SlidebookTiffReader | 
| class  | SMCameraReaderSMCameraReader is the file format reader for SM camera files. | 
| class  | SpiderReaderSpiderReader is the file format reader for SPIDER files. | 
| class  | SVSReaderSVSReader is the file format reader for Aperio SVS TIFF files. | 
| class  | TargaReaderFile format reader for Truevision Targa files. | 
| class  | TCSReaderTCSReader is the file format reader for Leica TCS TIFF files and their
 companion XML file. | 
| class  | TextReaderReader for text files containing tables of data. | 
| class  | TiffDelegateReaderTiffDelegateReader is a file format reader for TIFF files. | 
| class  | TiffJAIReaderTiffJAIReader is a file format reader for TIFF images. | 
| class  | TiffReaderTiffReader is the file format reader for regular TIFF files,
 not of any specific TIFF variant. | 
| class  | TileJPEGReaderReader for decoding JPEG images using java.awt.Toolkit. | 
| class  | TillVisionReaderTillVisionReader is the file format reader for TillVision files. | 
| class  | TopometrixReaderTopometrixReader is the file format reader for TopoMetrix .tfr, .ffr,
 .zfr, .zfp, and .2fl files. | 
| class  | TrestleReaderTrestleReader is the file format reader for Trestle slide datasets. | 
| class  | UBMReaderUBMReader is the file format reader for UBM .pr3 files. | 
| class  | UnisokuReaderUnisokuReader is the file format reader for Unisoku STM files. | 
| class  | VarianFDFReaderVarianFDFReader is the file format reader for Varian FDF files. | 
| class  | VeecoReaderVeecoReader is the file format reader for Veeco HDF files. | 
| class  | VGSAMReaderVGSAMReader is the file format reader for VG SAM .dti files. | 
| class  | VisitechReaderVisitechReader is the file format reader for Visitech XYS files. | 
| class  | VolocityClippingReaderVolocityClippingReader is the file format reader for Volocity library
 clipping files. | 
| class  | VolocityReaderVolocityReader is the file format reader for Volocity library files. | 
| class  | WATOPReaderWATOPReader is the file format reader for WA Technology .wat files. | 
| class  | WlzReaderWlzReader is a file format reader for Woolz files. | 
| class  | ZeissCZIReaderZeissCZIReader is the file format reader for Zeiss .czi files. | 
| class  | ZeissLMSReaderZeiss LMS reader for data from Zeiss CSM 700 systems. | 
| class  | ZeissLSMReaderZeissLSMReader is the file format reader for Zeiss LSM files. | 
| class  | ZeissTIFFReaderZeissTIFFReader is the file format reader for Zeiss AxioVision TIFF
 files and their companion XML file. | 
| class  | ZeissZVIReaderZeissZVIReader is the file format reader for Zeiss ZVI files. | 
| class  | ZipReaderReader for Zip files. | 
| Modifier and Type | Field and Description | 
|---|---|
| private IFormatReader | CellWorxReader. lastReader | 
| IFormatReader | OMETiffReader.OMETiffPlane. readerReader to use for accessing this plane. | 
| Modifier and Type | Field and Description | 
|---|---|
| private ClassList<IFormatReader> | ScreenReader. validReaders | 
| Modifier and Type | Method and Description | 
|---|---|
| private IFormatReader | CellWorxReader. getReader(String file,
         boolean omexml) | 
| IFormatReader[] | FilePatternReader. getUnderlyingReaders() | 
| Modifier and Type | Method and Description | 
|---|---|
| private static int[] | CacheConsole. getLengths(IFormatReader r)Helper utility for constructing lengths array, used by main. | 
| private void | MakeDatasetStructureTable. printFormatEntry(IFormatReader reader)Write a line containing all of the columns for the specified reader. | 
| Modifier and Type | Field and Description | 
|---|---|
| private IFormatReader | ImportProcess. baseReader | 
| Modifier and Type | Method and Description | 
|---|---|
| IFormatReader | ImportProcess. getBaseReader()Valid only after  ImportStep.READER. | 
| Modifier and Type | Method and Description | 
|---|---|
| private void | ImportProcess. computeSeriesLabels(IFormatReader r) | 
| private String | ImagePlusReader. constructImageTitle(IFormatReader r,
                   String file,
                   String seriesName,
                   boolean groupFiles) | 
| private String | ImagePlusReader. constructSliceLabel(int ndx,
                   IFormatReader r,
                   IMetadata meta,
                   int series,
                   int zCount,
                   int cCount,
                   int tCount) | 
| Constructor and Description | 
|---|
| ImporterMetadata(IFormatReader r,
                ImportProcess process,
                boolean usePrefix) | 
| ThumbLoader(IFormatReader ir,
           Panel[] p,
           Dialog dialog)Constructs a new thumbnail loader. | 
| Modifier and Type | Method and Description | 
|---|---|
| private static int | LociFunctions. getPlaneIndex(IFormatReader r,
             int no)Finds the Plane index corresponding to the given image plane number. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ImageProcessorReaderA low-level reader for  ImageProcessorobjects. | 
| class  | VirtualReaderTODO | 
| Modifier and Type | Field and Description | 
|---|---|
| private IFormatReader | VirtualImagePlus. r | 
| Modifier and Type | Method and Description | 
|---|---|
| protected static int | BFVirtualStack. getHeight(IFormatReader r,
         String path,
         int series) | 
| protected static int | BFVirtualStack. getWidth(IFormatReader r,
        String path,
        int series) | 
| static boolean | LociPrefs. isWindowless(IFormatReader r)Gets whether windowless mode should be used when
 opening this reader's currently initialized dataset. | 
| static ImageProcessorReader | ImageProcessorReader. makeImageProcessorReader(IFormatReader r)Converts the given reader into a ImageProcessorReader, wrapping if needed. | 
| void | VirtualImagePlus. setReader(IFormatReader r) | 
| Modifier and Type | Method and Description | 
|---|---|
| private static boolean | LociPrefs. getPref(String pref,
       Class<? extends IFormatReader> c,
       boolean defaultValue) | 
| static boolean | LociPrefs. isReaderEnabled(Class<? extends IFormatReader> c) | 
| Constructor and Description | 
|---|
| BFVirtualStack(String path,
              IFormatReader r,
              boolean colorize,
              boolean merge,
              boolean record) | 
| ImageProcessorReader(IFormatReader r)Constructs an ImageProcessorReader with the given reader. | 
| ImageProcessorSource(IFormatReader reader) | 
| VirtualReader(IFormatReader r) | 
| Modifier and Type | Field and Description | 
|---|---|
| private IFormatReader | FileHandleTest. reader | 
| private IFormatReader | OpenBytesPerformanceTest. reader | 
| private IFormatReader | SubResolutionTest. reader | 
| private IFormatReader | TiffWriterTest. readerReader | 
| Modifier and Type | Method and Description | 
|---|---|
| private void | Configuration. populateINI(IFormatReader reader) | 
| private void | Configuration. putTableName(IniTable table,
            IFormatReader reader,
            String suffix) | 
| Constructor and Description | 
|---|
| Configuration(IFormatReader reader,
             String configFile) | 
Copyright © 2015 Open Microscopy Environment