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 TypeMethodDescriptionvoid
writePyramid
(String path) Deprecated.void
writePyramid
(PyramidOMETiffWriter writer, IMetadata meta, int series) Deprecated.usewriteSeries(IFormatWriter, IMetadata, int)
insteadvoid
writeSeries
(String path) Write an image to the given file.void
writeSeries
(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:
FormatException
IOException
-
writeSeries
Write 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 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:
FormatException
IOException
- See Also:
-
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:
FormatException
IOException
- See Also:
-
writeSeries(String)
instead