public class ChannelMerger extends ReaderWrapper
readerCAN_GROUP, CANNOT_GROUP, MUST_GROUP| Constructor and Description | 
|---|
| ChannelMerger()Constructs a ChannelMerger around a new image reader. | 
| ChannelMerger(IFormatReader r)Constructs a ChannelMerger with the given reader. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | canMerge()Determines whether the channels in the file can be merged. | 
| String | getDimensionOrder()Gets a five-character string representing the
 dimension order in which planes will be returned. | 
| int | getImageCount()Determines the number of image planes in the current file. | 
| int | getIndex(int z,
        int c,
        int t)Gets the rasterized index corresponding
 to the given Z, C and T coordinates. | 
| Class<?> | getNativeDataType()Returns the native data type of image planes for this reader, as returned
 by  IFormatReader.openPlane(int, int, int, int, int)orIFormatWriter.savePlane(int, java.lang.Object). | 
| int | getOriginalIndex(int no)Returns the image number in the original dataset that corresponds to the
 given image number. | 
| int[] | getZCTCoords(int index)Gets the Z, C and T coordinates corresponding
 to the given rasterized index value. | 
| boolean | isIndexed()Gets whether the image planes are indexed color. | 
| boolean | isInterleaved()Gets whether or not the channels are interleaved. | 
| boolean | isRGB()Checks if the image planes in the file have more than one channel per
  IFormatReader.openBytes(int)call. | 
| static ChannelMerger | makeChannelMerger(IFormatReader r)Converts the given reader into a ChannelMerger, wrapping if needed. | 
| byte[] | openBytes(int no)Obtains the specified image plane from the current file as a byte array. | 
| byte[] | openBytes(int no,
         byte[] buf)Obtains the specified image plane from the current file into a
 pre-allocated byte array of
 (sizeX * sizeY * bytesPerPixel * RGB channel count). | 
| byte[] | openBytes(int no,
         byte[] buf,
         int x,
         int y,
         int w,
         int h)Obtains a sub-image of the specified image plane
 into a pre-allocated byte array. | 
| byte[] | openBytes(int no,
         int x,
         int y,
         int w,
         int h)Obtains a sub-image of the specified image plane,
 whose upper-left corner is given by (x, y). | 
close, close, coreIndexToSeries, duplicate, fileGroupOption, get16BitLookupTable, get8BitLookupTable, getAdvancedSeriesUsedFiles, getAdvancedUsedFiles, getBitsPerPixel, getChannelDimLengths, getChannelDimTypes, getCoreIndex, getCoreMetadata, getCoreMetadataList, getCurrentFile, getDatasetStructureDescription, getDomains, getEffectiveSizeC, getFormat, getGlobalMetadata, getMetadataOptions, getMetadataStore, getMetadataStoreRoot, getMetadataValue, getModuloC, getModuloT, getModuloZ, getOptimalTileHeight, getOptimalTileWidth, getPixelType, getPossibleDomains, getReader, getRequiredDirectories, getResolution, getResolutionCount, getRGBChannelCount, getSeries, getSeriesCount, getSeriesMetadata, getSeriesMetadataValue, getSeriesUsedFiles, getSeriesUsedFiles, getSizeC, getSizeT, getSizeX, getSizeY, getSizeZ, getSuffixes, getSupportedMetadataLevels, getThumbSizeX, getThumbSizeY, getUnderlyingReaders, getUsedFiles, getUsedFiles, hasCompanionFiles, hasFlattenedResolutions, isFalseColor, isGroupFiles, isInterleaved, isLittleEndian, isMetadataComplete, isMetadataFiltered, isNormalized, isOrderCertain, isOriginalMetadataPopulated, isSingleFile, isThisType, isThisType, isThisType, isThisType, isThumbnailSeries, openPlane, openThumbBytes, seriesToCoreIndex, setCoreIndex, setFlattenedResolutions, setGroupFiles, setId, setMetadataFiltered, setMetadataOptions, setMetadataStore, setNormalized, setOriginalMetadataPopulated, setResolution, setSeries, unwrap, unwrap, unwrappublic ChannelMerger()
public ChannelMerger(IFormatReader r)
public static ChannelMerger makeChannelMerger(IFormatReader r)
public boolean canMerge()
public int getOriginalIndex(int no)
                     throws FormatException,
                            IOException
no - is an image number greater than or equal to 0 and less than
   getImageCount()FormatExceptionIOExceptionpublic int getImageCount()
IFormatReadergetImageCount in interface IFormatReadergetImageCount in class ReaderWrapperpublic String getDimensionOrder()
IFormatReaderIFormatReader.isInterleaved() method will return true.getDimensionOrder in interface IFormatReadergetDimensionOrder in class ReaderWrapperpublic boolean isInterleaved()
IFormatReaderIFormatReader.getDimensionOrder() returns XYCTZ or XYCZT,
 and this method returns true.
 Note that this flag returns whether or not the data returned by
 IFormatReader.openBytes(int) is interleaved.  In most cases, this will
 match the interleaving in the original file, but for some formats (e.g.
 TIFF) channel re-ordering is done internally and the return value of
 this method will not match what is in the original file.isInterleaved in interface IFormatReaderisInterleaved in class ReaderWrapperpublic boolean isRGB()
IFormatReaderIFormatReader.openBytes(int) call.
 This method returns true if and only if IFormatReader.getRGBChannelCount()
 returns a value greater than 1.isRGB in interface IFormatReaderisRGB in class ReaderWrapperpublic boolean isIndexed()
IFormatReaderIFormatReader.getSizeC(),
 IFormatReader.getEffectiveSizeC() or IFormatReader.getRGBChannelCount().isIndexed in interface IFormatReaderisIndexed in class ReaderWrapperpublic byte[] openBytes(int no)
                 throws FormatException,
                        IOException
IFormatReaderopenBytes in interface IFormatReaderopenBytes in class ReaderWrapperFormatExceptionIOExceptionIFormatReader.openBytes(int, byte[])public byte[] openBytes(int no,
               byte[] buf)
                 throws FormatException,
                        IOException
IFormatReaderopenBytes in interface IFormatReaderopenBytes in class ReaderWrapperno - the image index within the file.buf - a pre-allocated buffer.buf for convenience.FormatException - if there was a problem parsing the metadata of the
   file.IOException - if there was a problem reading the file.public byte[] openBytes(int no,
               int x,
               int y,
               int w,
               int h)
                 throws FormatException,
                        IOException
IFormatReaderopenBytes in interface IFormatReaderopenBytes in class ReaderWrapperFormatExceptionIOExceptionpublic byte[] openBytes(int no,
               byte[] buf,
               int x,
               int y,
               int w,
               int h)
                 throws FormatException,
                        IOException
IFormatReaderopenBytes in interface IFormatReaderopenBytes in class ReaderWrapperno - the image index within the file.buf - a pre-allocated buffer.x - X coordinate of the upper-left corner of the sub-imagey - Y coordinate of the upper-left corner of the sub-imagew - width of the sub-imageh - height of the sub-imagebuf for convenience.FormatException - if there was a problem parsing the metadata of the
   file.IOException - if there was a problem reading the file.public int getIndex(int z,
           int c,
           int t)
IFormatReadergetIndex in interface IFormatReadergetIndex in class ReaderWrapperpublic int[] getZCTCoords(int index)
IFormatReadergetZCTCoords in interface IFormatReadergetZCTCoords in class ReaderWrapperpublic Class<?> getNativeDataType()
IFormatHandlerIFormatReader.openPlane(int, int, int, int, int) or IFormatWriter.savePlane(int, java.lang.Object).
 For most readers this type will be a byte array; however, some readers
 call external APIs that work with other types such as
 BufferedImage.getNativeDataType in interface IFormatHandlergetNativeDataType in class ReaderWrapperCopyright © 2015 Open Microscopy Environment