Uses of Interface
loci.formats.IFormatReader
Packages that use IFormatReader
Package
Description
Bio-Formats: a library for reading and writing popular microscopy file
formats.
Package containing Bio-Formats caching logic, for managing
subsets of large collections of image planes in memory.
Package containing Bio-Formats graphical user interface code.
Package containing Bio-Formats file format readers.
Package containing utility methods corresponding
to the Bio-Formats command line tools.
Bio-Formats Importer plugin for ImageJ.
Bio-Formats Macro Extensions plugin for ImageJ.
Utility classes and methods for the Bio-Formats plugins for ImageJ.
-
Uses of IFormatReader in loci.formats
Classes in loci.formats that implement IFormatReaderModifier and TypeClassDescriptionclassFor indexed color data representing true color, factors out the indices, replacing them with the color table values directly.classLogic to automatically merge channels in a file.classLogic to automatically separate the channels in a file.classDelegateReader is a file format reader that selects which reader to use for a format if there are two readers which handle the same format.classHandles swapping the dimension order of an image series.classLogic to stitch together files with similar names.classAbstract superclass of all biological file format readers.classImageReader is the master file format reader for all supported formats.classReaderWrapperimplementation which caches the state of the delegate (including and otherReaderWrapperinstances) afterMemoizer.setId(String)has been called.classLogic to compute minimum and maximum values for each channel.classAbstract superclass of reader logic that wraps other readers.classAbstract superclass of all biological file format readers that can handle image pyramids.classclassHelper class for readers which wrap other readers.Fields in loci.formats declared as IFormatReaderModifier and TypeFieldDescriptionprotected IFormatReaderDelegateReader.legacyReaderLegacy reader.protected IFormatReaderDelegateReader.nativeReaderNative reader.protected IFormatReaderReaderWrapper.readerFormatReader used to read the file.private IFormatReader[]ImageReader.readersList of supported file format readers.Fields in loci.formats with type parameters of type IFormatReaderModifier and TypeFieldDescriptionprivate ClassList<IFormatReader> FileStitcher.classListprivate static ClassList<IFormatReader> ImageReader.defaultClassesDefault list of reader classes, for use with noargs constructor.Methods in loci.formats that return IFormatReaderModifier and TypeMethodDescriptionFileStitcher.getReader()Gets the wrapped reader prototype.FileStitcher.getReader(int no) Gets the reader appropriate for use with the given image plane.static IFormatReaderFormatTools.getReader(IFormatReader r, Class<? extends IFormatReader> c) Recursively look for the first underlying reader that is an instance of the given class.ImageReader.getReader()Gets the reader used to open the current file.ImageReader.getReader(Class<? extends IFormatReader> c) Gets the file format reader instance matching the given class.Gets the reader used to open the given file.ReaderWrapper.getReader()Gets the wrapped reader.ImageReader.getReaders()Gets all constituent file format readers.FileStitcher.getUnderlyingReaders()FormatReader.getUnderlyingReaders()IFormatReader.getUnderlyingReaders()Retrieves all underlying readers.ImageReader.getUnderlyingReaders()ReaderWrapper.getUnderlyingReaders()WrappedReader.getUnderlyingReaders()protected IFormatReaderMemoizer.handleMetadataStore(IFormatReader memo) Return theIFormatReaderinstance that is passed in or null if it has been invalidated, which will include the instance being closed.Memoizer.loadMemo()Load a memo file if possible, returning a null if not.Memoizer.Deser.loadReader()Memoizer.KryoDeser.loadReader()Memoizer.RandomAccessDeser.loadReader()protected abstract IFormatReaderMemoizer.RandomAccessDeser.readerFromBytes(Class<IFormatReader> c, byte[] rArr) ReaderWrapper.unwrap()Unwraps nested wrapped readers until the core reader (i.e., not aReaderWrapperorImageReader) is found.ReaderWrapper.unwrap(Class<? extends IFormatReader> readerClass, String id) Unwraps nested wrapped readers until the given reader class is found.Unwraps nested wrapped readers until the core reader (i.e., not aReaderWrapperorImageReader) is found.Methods in loci.formats that return types with arguments of type IFormatReaderModifier and TypeMethodDescriptionstatic ClassList<IFormatReader> ImageReader.getDefaultReaderClasses()Methods in loci.formats with parameters of type IFormatReaderModifier and TypeMethodDescriptionprotected abstract byte[]Memoizer.RandomAccessDeser.bytesFromReader(IFormatReader reader) static booleanFormatTools.canUsePrecompressedTiles(IFormatReader reader, IFormatWriter writer, int series, int resolution) Compare the given reader and writer at the specified series and resolution to see if pre-compressed tiles can be transferred directly from the reader to the writer.static voidFormatTools.checkBufferSize(IFormatReader r, int len) static voidFormatTools.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 voidFormatTools.checkPlaneNumber(IFormatReader r, int no) Checks that the given plane number is valid for the given reader.static voidFormatTools.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 voidFormatTools.checkTileSize(IFormatReader r, int x, int y, int w, int h) Checks that the given tile size is valid for the given reader.CoreMetadata.clone(IFormatReader r, int coreIndex) SwappableMetadata.clone(IFormatReader r, int coreIndex) static voidFormatTools.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 booleanFormatTools.equalReaders(IFormatReader a, IFormatReader b) Check if the two given readers are equal.static StringFormatTools.getFilename(int series, int image, IFormatReader r, String pattern) static StringFormatTools.getFilename(int series, int image, IFormatReader r, String pattern, boolean padded) static String[]FormatTools.getFilenames(String pattern, IFormatReader r) static intFormatTools.getImagesPerFile(String pattern, IFormatReader r) static intFormatTools.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 intFormatTools.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 intFormatTools.getPlaneSize(IFormatReader r) Returns the size in bytes of a single plane.static intFormatTools.getPlaneSize(IFormatReader r, int w, int h) Returns the size in bytes of a w * h tile.static IFormatReaderFormatTools.getReader(IFormatReader r, Class<? extends IFormatReader> c) Recursively look for the first underlying reader that is an instance of the given class.static intFormatTools.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 IFormatReaderMemoizer.handleMetadataStore(IFormatReader memo) Return theIFormatReaderinstance that is passed in or null if it has been invalidated, which will include the instance being closed.static booleanFormatTools.isFloatingPoint(IFormatReader reader) Determines whether the given reader represents any floating point data.private booleanImageReader.isThisType(IFormatReader reader, byte[] block) private booleanImageReader.isThisType(IFormatReader reader, String name, boolean allowOpen) private booleanImageReader.isThisType(IFormatReader reader, loci.common.RandomAccessInputStream rais) private voidImageReader.logIsThisTypeError(IFormatReader reader, Exception e) static ChannelFillerChannelFiller.makeChannelFiller(IFormatReader r) Converts the given reader into a ChannelFiller, wrapping if needed.static ChannelMergerChannelMerger.makeChannelMerger(IFormatReader r) Converts the given reader into a ChannelMerger, wrapping if needed.static ChannelSeparatorChannelSeparator.makeChannelSeparator(IFormatReader r) Converts the given reader into a ChannelSeparator, wrapping if needed.static DimensionSwapperDimensionSwapper.makeDimensionSwapper(IFormatReader r) Converts the given reader into a DimensionSwapper, wrapping if needed.static MinMaxCalculatorMinMaxCalculator.makeMinMaxCalculator(IFormatReader r) Converts the given reader into a MinMaxCalculator, wrapping if needed.static TileStitcherTileStitcher.makeTileStitcher(IFormatReader r) Converts the given reader into a TileStitcher, wrapping if needed.static byte[]FormatTools.openThumbBytes(IFormatReader reader, int no) Default implementation foropenThumbBytes(int).static voidMetadataTools.populatePixels(MetadataStore store, IFormatReader r) Populates the Pixels element of the given metadata store, using core metadata from the given reader.static voidMetadataTools.populatePixels(MetadataStore store, IFormatReader r, boolean doPlane) Populates the Pixels element of the given metadata store, using core metadata from the given reader.static voidMetadataTools.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 voidMetadataTools.populatePixelsOnly(MetadataStore store, IFormatReader r) voidMemoizer.Deser.saveReader(IFormatReader reader) voidMemoizer.KryoDeser.saveReader(IFormatReader reader) voidMemoizer.RandomAccessDeser.saveReader(IFormatReader reader) Method parameters in loci.formats with type arguments of type IFormatReaderModifier and TypeMethodDescriptionReaderWrapper.duplicate(Class<? extends IFormatReader> imageReaderClass) Performs a deep copy of the reader, including nested wrapped readers.private ReaderWrapperReaderWrapper.duplicateRecurse(Class<? extends IFormatReader> imageReaderClass) static IFormatReaderFormatTools.getReader(IFormatReader r, Class<? extends IFormatReader> c) Recursively look for the first underlying reader that is an instance of the given class.ImageReader.getReader(Class<? extends IFormatReader> c) Gets the file format reader instance matching the given class.protected abstract IFormatReaderMemoizer.RandomAccessDeser.readerFromBytes(Class<IFormatReader> c, byte[] rArr) voidFileStitcher.setReaderClassList(ClassList<IFormatReader> classList) Set the ClassList object to use when constructing any helper readers.ReaderWrapper.unwrap(Class<? extends IFormatReader> readerClass, String id) Unwraps nested wrapped readers until the given reader class is found.Constructors in loci.formats with parameters of type IFormatReaderModifierConstructorDescriptionConstructs a ChannelFiller with a given reader.Constructs a ChannelMerger with the given reader.Constructs a ChannelSeparator with the given reader.CoreMetadata(IFormatReader r, int coreIndex) Constructs a DimensionSwapper with the given reader.Constructs a FileStitcher with the given reader.FileStitcher(IFormatReader r, boolean patternIds) Constructs a FileStitcher with the given reader.Constructs a memoizer around the givenIFormatReadercreating 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 givenIFormatReadercreating 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 givenIFormatReadercreating 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.Memoizer(IFormatReader r, File directory) Constructs a memoizer around the givenIFormatReadercreating memo file under thedirectoryargument including the full path of the original file only if the call toMemoizer.setId(java.lang.String)takes longer than 100L in milliseconds.Constructs a MinMaxCalculator with the given reader.Constructs a reader wrapper around the given reader.SwappableMetadata(IFormatReader r, int seriesNo) Constructs a TileStitcher with the given reader.Constructor parameters in loci.formats with type arguments of type IFormatReaderModifierConstructorDescriptionImageReader(ClassList<IFormatReader> classList) Constructs a new ImageReader from the given list of reader classes. -
Uses of IFormatReader in loci.formats.cache
Fields in loci.formats.cache declared as IFormatReaderModifier and TypeFieldDescriptionprotected IFormatReaderCacheSource.readerReader from which to draw image planes.Constructors in loci.formats.cache with parameters of type IFormatReaderModifierConstructorDescriptionConstructs a byte array source from the given Bio-Formats reader.Constructs a cache source from the given Bio-Formats reader. -
Uses of IFormatReader in loci.formats.gui
Classes in loci.formats.gui that implement IFormatReaderModifier and TypeClassDescriptionclassA reader wrapper for reading image planes as BufferedImage objects.Fields in loci.formats.gui declared as IFormatReaderModifier and TypeFieldDescriptionprotected IFormatReaderImageViewer.fileReaderReader for files on disk.protected IFormatReaderImageViewer.inprivate IFormatReaderFormatFileFilter.readerAssociated file format reader.Methods in loci.formats.gui that return IFormatReaderMethods in loci.formats.gui with parameters of type IFormatReaderModifier and TypeMethodDescriptionstatic BufferedImageReaderBufferedImageReader.makeBufferedImageReader(IFormatReader r) Converts the given reader into a BufferedImageReader, wrapping if needed.protected voidImageViewer.open(String id, IFormatReader r) Opens from the given data source using the specified reader in a separate thread.static BufferedImageAWTImageTools.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.static BufferedImageAWTImageTools.openImage(byte[] buf, IFormatReader r, int w, int h, boolean normal) Creates an image from the given byte array, using the given IFormatReader to retrieve additional information.voidImageViewer.setImages(IFormatReader reader, BufferedImage[] img) Sets the viewer to display the given images, obtaining corresponding core metadata from the specified format reader.Constructors in loci.formats.gui with parameters of type IFormatReaderModifierConstructorDescriptionConstructs 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. -
Uses of IFormatReader in loci.formats.in
Classes in loci.formats.in that implement IFormatReaderModifier and TypeClassDescriptionclassAFIReader is the file format reader for Aperio AFI files.classAIMReader is the file format reader for .aim files.classAliconaReader is the file format reader for Alicona AL3D files.classThis is a file format reader for AmiraMesh data.classAnalyzeReader is the file format reader for Analyze 7.5 files.classAPLReader is the file format reader for Olympus APL files.classAPNGReader is the file format reader for Animated Portable Network Graphics (APNG) images.classARFReader is the file format reader for Axon Raw Format (ARF) files, produced by INDEC BioSystems's Imaging Workbench software.classAVIReader is the file format reader for AVI files.classBaseTiffReader is the superclass for file format readers compatible with or derived from the TIFF 6.0 file format.classBaseZeissReader contains common functionality required by readers for Zeiss AxioVision formats.classBDReader is the file format reader for BD Pathway datasets.classReader for BDV files.classBIFormatReader is the superclass for file format readers that use java.awt.image.BufferedImage as the native data type.classBioRadGelReader is the file format reader for Bio-Rad gel files.classBioRadReader is the file format reader for Bio-Rad PIC files.classBioRadSCNReader is the reader for Bio-Rad .scn filesclassBMPReader is the file format reader for Microsoft Bitmap (BMP) files.classBrukerReader is the file format reader for Bruker MRI files.classBurleighReader is the file format reader for Burleigh .img files.classCanonRawReader is the file format reader for Canon RAW files.classReader for CellH5 (HDF) files.classReader for Cellomics C01 files.classCellSensReader is the file format reader for cellSens .vsi files.classA bioformat reader for the Yokagawa Cellvoyager CV1000 automated microscope ( http://www.yokogawa.com/scanner/products/cv1000e.htm).classCellWorxReader is the file format reader for CellWorx .pnl files.classColumbusReader is the file format reader for screens exported from PerkinElmer Columbus.classclassDCIMGReader reads Hamamatsu DCIMG files.classDeltavisionReader is the file format reader for Deltavision files.classDicomReader is the file format reader for DICOM files.classDNGReader is the file format reader for Canon DNG (TIFF) files.classEcat7Reader is the file format reader for ECAT 7 files.classReader is the file format reader for Encapsulated PostScript (EPS) files.classFakeReader is the file format reader for faking input data.classFEIReader is the file format reader for FEI and Philips .img files.classFEITiffReader is the file format reader for TIFF files produced by various FEI software.classclassFitsReader is the file format reader for Flexible Image Transport System (FITS) images.classFlexReader is a file format reader for Evotec Flex files.classclassFluoviewReader is the file format reader for Olympus Fluoview TIFF files AND Andor Bio-imaging Division (ABD) TIFF files.classFujiReader is the file format reader for Fuji LAS 3000 datasets.classFV1000Reader is the file format reader for Fluoview FV 1000 OIB and Fluoview FV 1000 OIF files.classGatanDM2Reader is the file format reader for Gatan .dm2 files.classGatanReader is the file format reader for Gatan files.classGelReader is the file format reader for Molecular Dynamics GEL TIFF files.classGIFReader is the file format reader for Graphics Interchange Format (GIF) files.classHamamatsuVMSReader is the file format reader for Hamamatsu VMS datasets.classHISReader is the file format reader for Hamamatsu .his files.classHitachiReader is the file format reader for S-4800 files.classHRDGDFReader is the file format reader for the Gridded Data Format used by NOAA's Hurricane Research Division.classI2IReader is the file format reader for I2I files.classICSReader is the file format reader for ICS (Image Cytometry Standard) files.classclassImaconReader is the file format reader for Imacon .fff (TIFF) files.classImageIOReader is the superclass for file format readers that use the javax.imageio package.classImagicReader is the file format reader for IMAGIC files.classReader for Bitplane Imaris 5.5 (HDF) files.classImarisReader is the file format reader for Bitplane Imaris files.classImarisTiffReader is the file format reader for Bitplane Imaris 3 files (TIFF variant).classReader for IMOD binary files.classImprovisionTiffReader is the file format reader for Improvision TIFF files.classImspectorReader is the file format reader for Imspector .msr files.classInCell3000Reader is the file format reader for InCell 3000.classInCellReader is the file format reader for InCell 1000/2000 datasets.classINRReader is the file format reader for INR files.classInveonReader is the file format reader for Inveon files.classIonpathMIBITiffReader is the file format reader for Ionpath MIBI TIFF files.classIPLabReader is the file format reader for IPLab (.IPL) files.classIPWReader is the file format reader for Image-Pro Workspace (IPW) files.classIvisionReader is the file format reader for IVision (.IPM) files.classJDCEReader is the file format reader for Molecular Devices JDCE plates.classJEOLReader is the file format reader for JEOL files.classJPEG2000Reader is the file format reader for JPEG-2000 images.classJPEGReader is the file format reader for JPEG images.static classclassJPKReader is the file format reader for JPK Instruments files.classJPXReader is the file format reader for JPX (3D JPEG-2000) images.classReader for Khoros XV files.classReader for Keller Lab Block (KLB) files.classKodakReader is the file format reader for Kodak Molecular Imaging .bip files.classL2DReader is the file format reader for Li-Cor L2D datasets.classLeicaReader is the file format reader for Leica files.classLeicaSCNReader is the file format reader for Leica SCN TIFF files.classLEOReader is the file format reader for LEO EM files.classLiFlimReader is the file format reader for LI-FLIM files.classLIFReader is the file format reader for Leica LIF files.classLIMReader is the file format reader for Laboratory Imaging/Nikon LIM files.classLOFReader is the file format reader for Leica Microsystems' LOF files.classReader is the file format reader for Metamorph STK files.classMetamorphTiffReader is the file format reader for TIFF files produced by Metamorph software version 7.5 and above.classMetaxpressTiffReader is the file format reader for MetaXpress .htd + TIFF files.classMIASReader is the file format reader for Maia Scientific MIAS-2 datasets.classMicroCTReader is the file format reader for VFF files from a GE MicroCT scanner.classMicromanagerReader is the file format reader for Micro-Manager files.classMikroscanTiffReader is the file format reader for Mikroscan TIFF files.classMINCReader is the file format reader for MINC MRI files.classMinimalTiffReader is the superclass for file format readers compatible with or derived from the TIFF 6.0 file format.classMNGReader is the file format reader for Multiple-image Network Graphics (MNG) files.classMolecularImagingReader is the file format reader for Molecular Imaging files.classMRCReader is the file format reader for MRC files.classMRWReader is the file format reader for Minolta MRW files.classNAFReader is the file format reader for Hamamatsu Aquacosmos NAF files.classND2Reader is the file format reader for Nikon ND2 files.classNDPIReader is the file format reader for Hamamatsu .ndpi files.classNDPISReader is the file format reader for Hamamatsu .ndpis files.classNiftiReader is the file format reader for NIfTI files.classNikonElementsTiffReader is the file format reader for TIFF files produced by Nikon Elements.classNikonReader is the file format reader for Nikon NEF (TIFF) files.classNikonTiffReader is the file format reader for Nikon TIFF files.classFile format reader for NRRD files; see http://teem.sourceforge.net/nrrd.classOBFReader is the file format reader for Imspector OBF files.classOIRReader is the file format reader for Olympus .oir files.classOlympusTileReader is the file format reader for Olympus .omp2info files.classOMETiffReader is the file format reader for OME-TIFF files.classOMEXMLReader is the file format reader for OME-XML files.classOpenlabRawReader is the file format reader for Openlab RAW files.classOpenlabReader is the file format reader for Openlab LIFF files.classOperettaReader is the file format reader for PerkinElmer Operetta data.classOxfordInstrumentsReader is the file format reader for Oxford Instruments .top files.classPCIReader is the file format reader for SimplePCI (Compix) .cxd files.classPCORAWReader is the file format reader for PCORAW files.classPCXReader is the file format reader for PCX files (originally used by PC Paintbrush; now used in Zeiss' LSM Image Browser).classPDSReader is the file format reader for Perkin Elmer densitometer files.classPerkinElmerReader is the file format reader for PerkinElmer files.classPGMReader is the file format reader for Portable Gray Map (PGM) images.classPhotoshopTiffReader is the file format reader for Adobe Photoshop TIFF files.classPictReader is the file format reader for Apple PICT files.classPovrayReader is the file format reader for POV-Ray .df3 files.classPQBinReader is the file format reader for PicoQuant .bin files.classPrairieReader is the file format reader for Prairie Technologies' TIFF variant.classPSDReader is the file format reader for Photoshop PSD files.classPyramidTiffReader is the file format reader for pyramid TIFFs.classQTReader is the file format reader for QuickTime movie files.classQuesantReader is the file format reader for Quesant .afm files.classclassRHKReader is the file format reader for RHK Technologies files.classSBIGReader is the file format reader for SBIG files.classScanrReader is the file format reader for Olympus ScanR datasets.classSDTReader is the file format reader for Becker & Hickl SPC-Image SDT files.classSeikoReader is the file format reader for Seiko .xqd/.xqf files.classSEQReader is the file format reader for Image-Pro Sequence files.classSIFReader is the file format reader for Andor SIF files.classSimplePCITiffReader is the file format reader for TIFF files produced by SimplePCI software.classSISReader is the file format reader for Olympus Soft Imaging Solutions TIFF files.classclassSlidebookReader is the file format reader for 3I Slidebook files.classclassSMCameraReader is the file format reader for SM camera files.classSPCReader is the file format reader for Becker & Hickl SPC-Image SPC FIFO files.classSPEReader is the file format reader for Princeton Instruments SPE .spe files.classSpiderReader is the file format reader for SPIDER files.classSVSReader is the file format reader for Aperio SVS TIFF files.classFile format reader for Truevision Targa files.classTCSReader is the file format reader for Leica TCS TIFF files and their companion XML file.classclassReader for text files containing tables of data.classTiffDelegateReader is a file format reader for TIFF files.classTiffJAIReader is a file format reader for TIFF images.classTiffReader is the file format reader for regular TIFF files, not of any specific TIFF variant.classReader for decoding JPEG images using java.awt.Toolkit and TurboJPEG.classTillVisionReader is the file format reader for TillVision files.classReader for TissueFAXS format from TissueGnostics.classTopometrixReader is the file format reader for TopoMetrix .tfr, .ffr, .zfr, .zfp, and .2fl files.classTrestleReader is the file format reader for Trestle slide datasets.classUBMReader is the file format reader for UBM .pr3 files.classUnisokuReader is the file format reader for Unisoku STM files.classVarianFDFReader is the file format reader for Varian FDF files.classVectraReader is the reader for PerkinElmer Vectra QPTIFF dataclassVeecoReader is the file format reader for Veeco HDF files.classVentanaReader is the file format reader for Ventana .bif files.classVGSAMReader is the file format reader for VG SAM .dti files.classVisitechReader is the file format reader for Visitech XYS files.classVolocityClippingReader is the file format reader for Volocity library clipping files.classVolocityReader is the file format reader for Volocity library files.classWATOPReader is the file format reader for WA Technology .wat files.classXLEFReader is the file format reader for Leica Microsystems' XLEF files.classZeissCZIReader is the file format reader for Zeiss .czi files.classZeiss LMS reader for data from Zeiss CSM 700 systems.classZeissLSMReader is the file format reader for Zeiss LSM files.classZeissTIFFReader is the file format reader for Zeiss AxioVision TIFF files and their companion XML file.classZeissXRMReader is the file format reader for Zeiss X-Ray Microscopy .txm and .txrm files.classZeissZVIReader is the file format reader for Zeiss ZVI files.classReader for Zip files.Fields in loci.formats.in declared as IFormatReaderModifier and TypeFieldDescriptionprivate IFormatReaderOlympusTileReader.helperReaderprivate IFormatReaderCellWorxReader.lastReaderOMETiffReader.OMETiffPlane.readerReader to use for accessing this plane.Methods in loci.formats.in that return IFormatReaderMethods in loci.formats.in with parameters of type IFormatReaderModifier and TypeMethodDescriptionprivate voidOMETiffReader.initializeReader(IFormatReader r, String file) protected voidCellWorxReader.initReader(IFormatReader reader, String file, boolean omexml) private voidOMETiffReader.removeIFDComments(IFormatReader r) -
Uses of IFormatReader in loci.formats.in.LeicaMicrosystemsMetadata
Classes in loci.formats.in.LeicaMicrosystemsMetadata that implement IFormatReaderModifier and TypeClassDescriptionclassThis class can be extended by readers of Leica Microsystems file formats that include LASX generated XML (e.g.classMultipleImagesReader presents a number of image files as one image reference -
Uses of IFormatReader in loci.formats.tools
Methods in loci.formats.tools with parameters of type IFormatReaderModifier and TypeMethodDescriptionprivate static final int[]CacheConsole.getLengths(IFormatReader r) Helper utility for constructing lengths array, used by main. -
Uses of IFormatReader in loci.plugins.in
Fields in loci.plugins.in declared as IFormatReaderMethods in loci.plugins.in that return IFormatReaderModifier and TypeMethodDescriptionImportProcess.getBaseReader()Valid only afterImportStep.READER.Methods in loci.plugins.in with parameters of type IFormatReaderModifier and TypeMethodDescriptionprivate voidImportProcess.computeSeriesLabels(IFormatReader r) private StringImagePlusReader.constructImageTitle(IFormatReader r, String file, String seriesName, boolean groupFiles) private StringImagePlusReader.constructSliceLabel(int ndx, IFormatReader r, IMetadata meta, int series, int zCount, int cCount, int tCount) Constructors in loci.plugins.in with parameters of type IFormatReaderModifierConstructorDescriptionImporterMetadata(IFormatReader r, ImportProcess process, boolean usePrefix) ThumbLoader(IFormatReader ir, Panel[] p, Dialog dialog) Constructs a new thumbnail loader. -
Uses of IFormatReader in loci.plugins.macro
Methods in loci.plugins.macro with parameters of type IFormatReaderModifier and TypeMethodDescriptionprivate static intLociFunctions.getPlaneIndex(IFormatReader r, int no) Finds the Plane index corresponding to the given image plane number. -
Uses of IFormatReader in loci.plugins.util
Classes in loci.plugins.util that implement IFormatReaderModifier and TypeClassDescriptionclassA low-level reader forImageProcessorobjects.classTODOFields in loci.plugins.util declared as IFormatReaderMethods in loci.plugins.util with parameters of type IFormatReaderModifier and TypeMethodDescriptionprotected static intBFVirtualStack.getHeight(IFormatReader r, String path, int series) protected static intBFVirtualStack.getWidth(IFormatReader r, String path, int series) static booleanLociPrefs.isWindowless(IFormatReader r) Gets whether windowless mode should be used when opening this reader's currently initialized dataset.static ImageProcessorReaderImageProcessorReader.makeImageProcessorReader(IFormatReader r) Converts the given reader into a ImageProcessorReader, wrapping if needed.voidVirtualImagePlus.setReader(IFormatReader r) Method parameters in loci.plugins.util with type arguments of type IFormatReaderModifier and TypeMethodDescriptionprivate static booleanLociPrefs.getPref(String pref, Class<? extends IFormatReader> c, boolean defaultValue) static booleanLociPrefs.isReaderEnabled(Class<? extends IFormatReader> c) Constructors in loci.plugins.util with parameters of type IFormatReaderModifierConstructorDescriptionBFVirtualStack(String path, IFormatReader r, boolean colorize, boolean merge, boolean record) Constructs an ImageProcessorReader with the given reader.ImageProcessorSource(IFormatReader reader)