Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
#include <mitkContourModelWriter.h>
Public Member Functions | |
ContourModelWriter () | |
virtual | ~ContourModelWriter () |
virtual void | Write () override |
Write the base data to the specified location or output stream. More... | |
Public Member Functions inherited from mitk::AbstractFileWriter | |
virtual void | SetInput (const BaseData *data) override |
Set the input data for writing. More... | |
virtual const BaseData * | GetInput () const override |
Get the input data set via SetInput(). More... | |
virtual void | SetOutputLocation (const std::string &location) override |
Set the output location. More... | |
virtual std::string | GetOutputLocation () const override |
Get the current output location. More... | |
virtual void | SetOutputStream (const std::string &location, std::ostream *os) override |
Set an output stream for writing. More... | |
virtual std::ostream * | GetOutputStream () const override |
Get the output stream. More... | |
virtual ConfidenceLevel | GetConfidenceLevel () const override |
The confidence level of the reader or writer implementation. More... | |
MimeType | GetRegisteredMimeType () const |
virtual Options | GetOptions () const override |
returns a list of the supported options More... | |
virtual us::Any | GetOption (const std::string &name) const override |
virtual void | SetOptions (const Options &options) override |
virtual void | SetOption (const std::string &name, const us::Any &value) override |
virtual void | AddProgressCallback (const ProgressCallback &callback) override |
virtual void | RemoveProgressCallback (const ProgressCallback &callback) override |
us::ServiceRegistration< IFileWriter > | RegisterService (us::ModuleContext *context=us::GetModuleContext()) |
void | UnregisterService () |
Public Member Functions inherited from mitk::IFileWriter | |
virtual | ~IFileWriter () |
Public Member Functions inherited from mitk::IFileIO | |
virtual | ~IFileIO () |
Static Public Attributes | |
static const char * | XML_CONTOURMODEL |
static const char * | XML_HEAD |
static const char * | XML_GEOMETRY_INFO |
static const char * | XML_DATA |
static const char * | XML_TIME_STEP |
static const char * | XML_CONTROL_POINTS |
static const char * | XML_POINT |
static const char * | XML_X |
static const char * | XML_Y |
static const char * | XML_Z |
Protected Member Functions | |
ContourModelWriter (const ContourModelWriter &other) | |
virtual mitk::ContourModelWriter * | Clone () const override |
template<typename T > | |
std::string | ConvertToString (T value) |
void | WriteXML (const mitk::ContourModel *contourModel, std::ostream &out) |
void | WriteGeometryInformation (const mitk::TimeGeometry *geometry, std::ostream &out) |
void | WriteGeometryInformation (const mitk::TimeSlicedGeometry *geometry, std::ostream &out) |
void | WriteXMLHeader (std::ostream &file) |
void | WriteStartElement (const char *const tag, std::ostream &file) |
void | WriteStartElementWithAttribut (const char *const tag, std::vector< std::string > attributes, std::vector< std::string > values, std::ostream &file) |
void | WriteEndElement (const char *const tag, std::ostream &file, const bool &indent=true) |
void | WriteCharacterData (const char *const data, std::ostream &file) |
void | WriteStartElement (std::string &tag, std::ostream &file) |
void | WriteEndElement (std::string &tag, std::ostream &file, const bool &indent=true) |
void | WriteCharacterData (std::string &data, std::ostream &file) |
void | WriteIndent (std::ostream &file) |
Protected Member Functions inherited from mitk::AbstractFileWriter | |
~AbstractFileWriter () | |
AbstractFileWriter (const AbstractFileWriter &other) | |
AbstractFileWriter (const std::string &baseDataType) | |
AbstractFileWriter (const std::string &baseDataType, const CustomMimeType &mimeType, const std::string &description) | |
virtual us::ServiceProperties | GetServiceProperties () const |
virtual us::ServiceRegistration< CustomMimeType > | RegisterMimeType (us::ModuleContext *context) |
void | SetMimeType (const CustomMimeType &mimeType) |
const CustomMimeType * | GetMimeType () const |
void | SetMimeTypePrefix (const std::string &prefix) |
std::string | GetMimeTypePrefix () const |
void | SetDescription (const std::string &description) |
Sets a human readable description of this writer. More... | |
std::string | GetDescription () const |
void | SetDefaultOptions (const Options &defaultOptions) |
Options | GetDefaultOptions () const |
void | SetRanking (int ranking) |
Set the service ranking for this file writer. More... | |
int | GetRanking () const |
void | SetBaseDataType (const std::string &baseDataType) |
Sets the name of the mitk::Basedata that this writer is able to handle. More... | |
virtual std::string | GetBaseDataType () const |
void | ValidateOutputLocation () const |
Protected Attributes | |
unsigned int | m_IndentDepth |
unsigned int | m_Indent |
Additional Inherited Members | |
Public Types inherited from mitk::IFileIO | |
enum | ConfidenceLevel { Unsupported, PartiallySupported, Supported } |
A confidence level describing the confidence of the reader or writer in handling the given data. More... | |
typedef std::map< std::string, us::Any > | Options |
Options for reading or writing data. More... | |
typedef mitk::MessageAbstractDelegate1< float > | ProgressCallback |
Static Public Member Functions inherited from mitk::IFileWriter | |
static std::string | PROP_BASEDATA_TYPE () |
Service property name for the supported mitk::BaseData sub-class. More... | |
Static Public Member Functions inherited from mitk::IFileIO | |
static std::string | PROP_DESCRIPTION () |
Service property name for a description. More... | |
static std::string | PROP_MIMETYPE () |
Service property name for the mime-type associated with this file writer. More... | |
Definition at line 60 of file mitkContourModelWriter.h.
mitk::ContourModelWriter::ContourModelWriter | ( | ) |
|
virtual |
Definition at line 90 of file mitkContourModelWriter.cpp.
|
protected |
Definition at line 85 of file mitkContourModelWriter.cpp.
|
overrideprotectedvirtual |
Implements mitk::AbstractFileWriter.
Definition at line 139 of file mitkContourModelWriter.cpp.
|
protected |
Converts an arbitrary type to a string. The type has to support the << operator. This works fine at least for integral data types as float, int, long etc.
value | the value to convert |
Definition at line 242 of file mitkContourModelWriter.cpp.
|
overridevirtual |
Write the base data to the specified location or output stream.
This method must be implemented for each specific writer. Call GetOutputStream() first and check for a non-null stream to write to. If the output stream is NULL
, use GetOutputLocation() to write to a local file-system path.
If the reader cannot use streams directly, use GetLocalFile() to retrieve a temporary local file name instead.
mitk::Exception |
Implements mitk::AbstractFileWriter.
Definition at line 94 of file mitkContourModelWriter.cpp.
References mitkThrow.
Referenced by mitk::ContourModelSerializer::Serialize(), and mitk::ContourModelSetWriter::Write().
|
protected |
Write character data inside a tag.
Definition at line 315 of file mitkContourModelWriter.cpp.
|
protected |
Write character data inside a tag.
Definition at line 330 of file mitkContourModelWriter.cpp.
|
protected |
Write an end element tag End-Elements following character data should pass indent = false.
Definition at line 304 of file mitkContourModelWriter.cpp.
|
protected |
Write an end element tag
Definition at line 325 of file mitkContourModelWriter.cpp.
|
protected |
Writes the geometry information of the TimeGeometry to an outstream. The root tag is not included.
geometry | the TimeGeometry of the contour. |
the | stream to write to. |
Definition at line 236 of file mitkContourModelWriter.cpp.
|
protected |
Writes the geometry information of the TimeGeometry to an outstream. The root tag is not included.
geometry | the TimeGeometry of the contour. |
the | stream to write to. |
|
protected |
Writes empty spaces to the stream according to m_IndentDepth and m_Indent
Definition at line 335 of file mitkContourModelWriter.cpp.
|
protected |
Write a start element tag
Definition at line 261 of file mitkContourModelWriter.cpp.
|
protected |
Write a start element tag
Definition at line 320 of file mitkContourModelWriter.cpp.
|
protected |
Definition at line 269 of file mitkContourModelWriter.cpp.
|
protected |
Writes an XML representation of the given point set to an outstream. The XML-Header an root node is not included!
contourModel | the point set to be converted to xml |
out | the stream to write to. |
Definition at line 144 of file mitkContourModelWriter.cpp.
References mitk::ContourElement::ContourModelVertex::Coordinates, mitk::BaseData::GetTimeGeometry(), mitk::BaseData::GetTimeSteps(), mitk::ContourModel::IsClosed(), mitk::ContourElement::ContourModelVertex::IsControlPoint, mitk::ContourModel::IteratorBegin(), and mitk::ContourModel::IteratorEnd().
|
protected |
Writes an standard xml header to the given stream.
file | the stream in which the header is written. |
Definition at line 256 of file mitkContourModelWriter.cpp.
|
protected |
Definition at line 148 of file mitkContourModelWriter.h.
|
protected |
Definition at line 146 of file mitkContourModelWriter.h.
|
static |
Definition at line 151 of file mitkContourModelWriter.h.
|
static |
Definition at line 161 of file mitkContourModelWriter.h.
|
static |
Definition at line 157 of file mitkContourModelWriter.h.
|
static |
Definition at line 155 of file mitkContourModelWriter.h.
|
static |
Definition at line 153 of file mitkContourModelWriter.h.
|
static |
Definition at line 163 of file mitkContourModelWriter.h.
|
static |
Definition at line 159 of file mitkContourModelWriter.h.
|
static |
Definition at line 165 of file mitkContourModelWriter.h.
|
static |
Definition at line 167 of file mitkContourModelWriter.h.
|
static |
Definition at line 169 of file mitkContourModelWriter.h.