Package qupath.lib.images.writers.ome
Class OMEPyramidWriter.OMEPyramidSeries
java.lang.Object
qupath.lib.images.writers.ome.OMEPyramidWriter.OMEPyramidSeries
- Enclosing class:
- OMEPyramidWriter
Class representing a single series to write to an OME-TIFF.
- 
Method SummaryModifier and TypeMethodDescriptionvoidwritePyramid(String path) Deprecated.voidwritePyramid(PyramidOMETiffWriter writer, IMetadata meta, int series) Deprecated.usewriteSeries(IFormatWriter, IMetadata, int)insteadvoidwriteSeries(String path) Write an image to the given file.voidwriteSeries(IFormatWriter writer, IMetadata meta, int series) Append an image as a specific series.
- 
Method Details- 
writePyramidDeprecated.usewriteSeries(String)insteadWrite an OME-TIFF pyramidal image to the given file.- Parameters:
- path- file path for output
- Throws:
- FormatException
- IOException
 
- 
writeSeriesWrite an image to the given file.- Parameters:
- path- file path for output
- Throws:
- FormatException
- IOException
 
- 
writePyramid@Deprecated public void writePyramid(PyramidOMETiffWriter writer, IMetadata meta, int series) throws FormatException, IOException Deprecated.usewriteSeries(IFormatWriter, IMetadata, int)insteadAppend an image as a specific series to a pyramidal OME TIFF.- Parameters:
- writer- the current writer; it should already be initialized, with metadata and ID set
- meta- the metadata, which should already have been initialized and set in the writer before writing any pixels
- series- number of series to be written (starting with 0; assumes previous series already written)
- Throws:
- FormatException
- IOException
- See Also:
 
- 
writeSeriespublic void writeSeries(IFormatWriter writer, IMetadata meta, int series) throws FormatException, IOException Append an image as a specific series.- Parameters:
- writer- the current writer; it should already be initialized, with metadata and ID set
- meta- the metadata, which should already have been initialized and set in the writer before writing any pixels
- series- number of series to be written (starting with 0; assumes previous series already written)
- Throws:
- FormatException
- IOException
- See Also:
 
 
- 
writeSeries(String)instead