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 Summary
Modifier 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
-
writePyramid
Deprecated.usewriteSeries(String)insteadWrite an OME-TIFF pyramidal image to the given file.- Parameters:
path- file path for output- Throws:
FormatExceptionIOException
-
writeSeries
Write an image to the given file.- Parameters:
path- file path for output- Throws:
FormatExceptionIOException
-
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 setmeta- the metadata, which should already have been initialized and set in the writer before writing any pixelsseries- number of series to be written (starting with 0; assumes previous series already written)- Throws:
FormatExceptionIOException- See Also:
-
OMEPyramidWriter.BuilderinitializeMetadata(IMetadata, int)
-
writeSeries
public 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 setmeta- the metadata, which should already have been initialized and set in the writer before writing any pixelsseries- number of series to be written (starting with 0; assumes previous series already written)- Throws:
FormatExceptionIOException- See Also:
-
OMEPyramidWriter.BuilderinitializeMetadata(IMetadata, int)
-
writeSeries(String)instead