bioformats
5.1.0
|
Interface for all biological file format writers. More...
#include <ome/bioformats/FormatWriter.h>
Classes | |
class | SaveSeries |
Sentry for saving and restoring writer series state. More... | |
Public Types | |
typedef uint16_t | frame_rate_type |
Frame rate type. | |
Public Member Functions | |
virtual | ~FormatWriter () |
Destructor. | |
virtual void | setLookupTable (const VariantPixelBuffer &buf)=0 |
Set the color lookup table associated with the current series. More... | |
virtual void | saveBytes (dimension_size_type no, VariantPixelBuffer &buf)=0 |
Save an image plane. More... | |
virtual void | saveBytes (dimension_size_type no, VariantPixelBuffer &buf, dimension_size_type x, dimension_size_type y, dimension_size_type w, dimension_size_type h)=0 |
Save an image plane. More... | |
virtual void | setSeries (dimension_size_type no) const =0 |
Set the active series. More... | |
virtual dimension_size_type | getSeries () const =0 |
Get the active series. More... | |
virtual bool | canDoStacks () const =0 |
Get whether or not the writer can save multiple images in a single file. More... | |
virtual void | setMetadataRetrieve (ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > &retrieve)=0 |
Set the default metadata store for this writer. More... | |
virtual const ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > & | getMetadataRetrieve () const =0 |
Get the current metadata store for this writer. More... | |
virtual ome::compat::shared_ptr< ::ome::xml::meta::MetadataRetrieve > & | getMetadataRetrieve ()=0 |
Get the current metadata store for this writer. More... | |
virtual void | setFramesPerSecond (frame_rate_type rate)=0 |
Set the frame rate to use when writing. More... | |
virtual frame_rate_type | getFramesPerSecond () const =0 |
Get the frame rate to use when writing. More... | |
virtual const std::set< ome::xml::model::enums::PixelType > & | getPixelTypes () const =0 |
Get supported pixel types. More... | |
virtual const std::set< ome::xml::model::enums::PixelType > & | getPixelTypes (const std::string &codec) const =0 |
Get supported pixel types for the given codec. More... | |
virtual bool | isSupportedType (ome::xml::model::enums::PixelType type) const =0 |
Check if the pixel type is supported. More... | |
virtual bool | isSupportedType (ome::xml::model::enums::PixelType type, const std::string &codec) const =0 |
Check if the pixel type is supported by the given codex. More... | |
virtual const std::set< std::string > & | getCompressionTypes () const =0 |
Get supported compression types. More... | |
virtual void | setCompression (const std::string &compression)=0 |
Set the compression type to use when writing. More... | |
virtual const boost::optional< std::string > & | getCompression () const =0 |
Get the compression type to use when writing. More... | |
virtual void | changeOutputFile (const boost::filesystem::path &id)=0 |
Switch the output file for the current dataset. More... | |
virtual void | setWriteSequentially (bool sequential=true)=0 |
Write planes sequentially. More... | |
virtual bool | getWriteSequentially () const =0 |
Check if planes are written sequentially. More... | |
Public Member Functions inherited from ome::bioformats::FormatHandler | |
virtual | ~FormatHandler () |
Destructor. | |
virtual bool | isThisType (const boost::filesystem::path &name, bool open=true) const =0 |
Check if the given file is a valid instance of this file format. More... | |
virtual const std::string & | getFormat () const =0 |
Get the name of this file format. More... | |
virtual const std::string & | getFormatDescription () const =0 |
Get the description of this file format. More... | |
virtual const std::vector< boost::filesystem::path > & | getSuffixes () const =0 |
Get the default file suffixes for this file format. More... | |
virtual const std::vector< boost::filesystem::path > & | getCompressionSuffixes () const =0 |
Get the default compression suffixes for this file format. More... | |
virtual void | setId (const boost::filesystem::path &id)=0 |
Set the current file name. More... | |
virtual void | close (bool fileOnly=false)=0 |
Close the currently open file. More... | |
Protected Member Functions | |
FormatWriter () | |
Constructor. | |
Protected Member Functions inherited from ome::bioformats::FormatHandler | |
FormatHandler () | |
Constructor. | |
Private Member Functions | |
FormatWriter (const FormatWriter &) | |
Copy constructor (deleted). | |
FormatWriter & | operator= (const FormatWriter &) |
Assignment operator (deleted). | |
Additional Inherited Members | |
Static Public Member Functions inherited from ome::bioformats::FormatHandler | |
static bool | checkSuffix (const boost::filesystem::path &name, const boost::filesystem::path &suffix) |
Perform suffix matching for the given filename. More... | |
static bool | checkSuffix (const boost::filesystem::path &name, const std::vector< boost::filesystem::path > &suffixes) |
Perform suffix matching for the given filename. More... | |
static bool | checkSuffix (const boost::filesystem::path &name, const std::vector< boost::filesystem::path > &suffixes, const std::vector< boost::filesystem::path > &compression_suffixes) |
Perform suffix matching for the given filename. More... | |
static void | assertId (const boost::optional< boost::filesystem::path > &id, bool notNull=true) |
Assert that the current file is valid. More... | |
Interface for all biological file format writers.
Region
with and/or in terms of Boost.MultiArray index ranges.
|
pure virtual |
Get whether or not the writer can save multiple images in a single file.
true
if the writer supports multiple images, false
otherwise. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Switch the output file for the current dataset.
id | the new file name. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get the compression type to use when writing.
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get supported compression types.
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get the frame rate to use when writing.
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get the current metadata store for this writer.
null
. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get the current metadata store for this writer.
null
. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get supported pixel types.
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get supported pixel types for the given codec.
codec | the codec to check. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Get the active series.
Implemented in ome::bioformats::detail::FormatWriter.
Referenced by ome::bioformats::FormatWriter::SaveSeries::~SaveSeries().
|
pure virtual |
Check if planes are written sequentially.
true
if sequential, false
if not. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Check if the pixel type is supported.
type | the pixel type to check. |
true
if supported, false
otherwise. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Check if the pixel type is supported by the given codex.
type | the pixel type to check. |
codec | the codec to check. |
true
if supported, false
otherwise. Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Save an image plane.
Write an image plane from a VariantPixelBuffer of size
to the current series in the current file.
no | the image index within the file. |
buf | the source pixel buffer. |
FormatException | if any of the parameters are invalid. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Save an image plane.
Write an image plane from a VariantPixelBuffer of size
to the current series in the current file.
no | the image index within the file. |
buf | the source pixel buffer. |
x | the X coordinate of the upper-left corner of the sub-image. |
y | the Y coordinate of the upper-left corner of the sub-image. |
w | the width of the sub-image. |
h | the height of the sub-image. |
FormatException | if any of the parameters are invalid. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Set the compression type to use when writing.
compression | the compression type. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Set the frame rate to use when writing.
rate | the frame rate (number of frames per second). |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Set the color lookup table associated with the current series.
If the pixel type of the lookup table is unsupported by the file format, this method will throw an exception.
buf | the source pixel buffer. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Set the default metadata store for this writer.
retrieve | a metadata retrieve implementation. |
Implemented in ome::bioformats::detail::FormatWriter.
|
pure virtual |
Set the active series.
no | the series to activate. |
Implemented in ome::bioformats::detail::FormatWriter.
Referenced by ome::bioformats::FormatWriter::SaveSeries::~SaveSeries().
|
pure virtual |
Write planes sequentially.
Set if planes will be written sequentially. If planes are written sequentially and this flag is set, then performance will be slightly improved.
sequential | true if sequential, false if not. |
Implemented in ome::bioformats::detail::FormatWriter.