diff --git a/Documentation/Doxygen/3-DeveloperManual/Concepts/Concepts.dox b/Documentation/Doxygen/3-DeveloperManual/Concepts/Concepts.dox index ef6f9c5bfa..2213eef822 100644 --- a/Documentation/Doxygen/3-DeveloperManual/Concepts/Concepts.dox +++ b/Documentation/Doxygen/3-DeveloperManual/Concepts/Concepts.dox @@ -1,31 +1,32 @@ /** \page Concepts MITK Concepts The following items describe some issues about MITK on a more abstract level. -# \subpage CodingPage "Coding Concepts" -# \ref CodingPageGeneral -# \ref CodingPageStyle -# \ref CodingPageMITKMacros -# \subpage MicroServices_Overview -# Data Concepts -# \subpage BasicDataTypesPage -# \subpage DataManagementPage -# \subpage ReaderWriterPage -# \subpage MitkImagePage -# \subpage MITKSegmentationTaskListsPage + -# \subpage MITKROIsPage -# \subpage PropertiesPage -# \subpage GeometryOverviewPage -# \subpage PipelineingConceptPage -# \subpage AnnotationPage -# \subpage PersistenceConceptPage -# \subpage SelectionConceptPage -# \subpage QVTKRendering -# Interaction -# \subpage DataInteractionPage -# \subpage InteractionPage -# \subpage LoggingPage -# \subpage ExceptionPage -# \subpage ModularizationPage "Modularization Concept" -# \ref ModularizationPageOverview */ diff --git a/Documentation/Doxygen/3-DeveloperManual/Concepts/MITKROIs.md b/Documentation/Doxygen/3-DeveloperManual/Concepts/MITKROIs.md new file mode 100644 index 0000000000..7e73aa67e8 --- /dev/null +++ b/Documentation/Doxygen/3-DeveloperManual/Concepts/MITKROIs.md @@ -0,0 +1,24 @@ +# MITK ROIs {#MITKROIsPage} + +[TOC] + +## Overview + +MITK ROIs are a JSON-based file format defining a list of region of interests (ROIs). + +MITK ROIs must be considered experimental at the moment and are prone to change without any prior warning. + +## File format + +MITK ROIs are JSON files containing a JSON object as root, which must contain the two mandatory properties `FileFormat` and `Version`: + +~~~{.json} +{ + "FileFormat": "MITK ROI", + "Version": 1 +} +~~~ + +### ROIs + +... diff --git a/Modules/Core/include/mitkEnumerationProperty.h b/Modules/Core/include/mitkEnumerationProperty.h index 8ec695d872..7771762a5b 100644 --- a/Modules/Core/include/mitkEnumerationProperty.h +++ b/Modules/Core/include/mitkEnumerationProperty.h @@ -1,197 +1,208 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkEnumerationProperty_h #define mitkEnumerationProperty_h #include <mitkBaseProperty.h> #include <map> #include <string> #ifdef _MSC_VER # pragma warning(push) # pragma warning(disable: 4522) // "multiple assignment operators specified" #endif namespace mitk { /** * This class may be used to store properties similar to enumeration values. * Each enumeration value is identified by an id and a name. Note that both * name and id must be unique. Add enumeration values before you use the * Get/SetValue methods. * * To use this class, create a subclass that adds the possible enumeration * values in its constructor. You should override AddEnum() as protected so * that the user isn't able to add invalid enumeration values. * * As example see mitk::VtkRepresentationProperty or * mitk::VtkInterpolationProperty. * * @ingroup DataManagement */ class MITKCORE_EXPORT EnumerationProperty : public BaseProperty { public: mitkClassMacro(EnumerationProperty, BaseProperty); itkFactorylessNewMacro(Self); itkCloneMacro(Self); /** * Represents the unique id which is assigned to each enumeration name. */ typedef unsigned int IdType; /** * Type used to store a mapping from enumeration id to enumeration name. */ typedef std::map<IdType, std::string> EnumIdsContainerType; /** * Type used to store a mapping from enumeration name to enumeration id. */ typedef std::map<std::string, IdType> EnumStringsContainerType; /** * Type used for iterators over all defined enumeration values. */ typedef EnumIdsContainerType::const_iterator EnumConstIterator; /** * Adds an enumeration value into the enumeration. The name and id provided * must be unique. This is checked while adding the new enumeration value. * If it is not unique, false is returned. If addition was successful, true * is returned. * @param name The unique name of the enumeration value * @param id The unique id of the enumeration value * @returns True, if the name/id combination was successfully added to the * enumeration values. Otherwise false. */ virtual bool AddEnum(const std::string &name, const IdType &id); /** * Sets the current value of the enumeration. * @param name The name of the enumeration value to set * @returns True if the value was successfully set. Otherwise false. */ virtual bool SetValue(const std::string &name); /** * Sets the current value of the enumeration. * @param id The id of the enumeration value to set * @returns True, if the value was successfully set. Otherwise false. */ virtual bool SetValue(const IdType &id); /** * Returns the id of the current enumeration value. If it was not set so far, * the return value is unspecified. */ virtual IdType GetValueAsId() const; /** * Returns the name of the current enumeration value. If it was not set so far, * the return value is unspecified. */ std::string GetValueAsString() const override; /** * Clears all enumerations including the current one. */ virtual void Clear(); /** * Determines the number of enumeration values. */ virtual EnumIdsContainerType::size_type Size() const; /** * Provides access to the set of enumeration values. The name can be * accessed with iterator->second, the id via iterator->first. * @returns An iterator over all enumeration values. */ virtual EnumConstIterator Begin() const; /** * Specifies the end of the range of enumeration values. * @returns An iterator pointing past the last enumeration values. */ virtual EnumConstIterator End() const; /** * Returns the name for the given id. * @param id The id for which the name should be determined. * If the id is invalid, the return value is unspecified. * @returns The name of the determined enumeration value. */ virtual std::string GetEnumString(const IdType &id) const; /** * Returns the id for the given name. * @param name The enumeration name for which the id should be determined. * If the name is invalid, the return value is unspecified. * @returns The id of the determined enumeration value. */ virtual IdType GetEnumId(const std::string &name) const; /** * Determines if a given id is valid. * @param id The id to check * @returns True if the given id is valid. Otherwise false. */ virtual bool IsValidEnumerationValue(const IdType &id) const; /** * Determines if a given name is valid. * @param name The name to check * @returns True if the given name is valid. Otherwise false. */ virtual bool IsValidEnumerationValue(const std::string &name) const; const EnumIdsContainerType &GetEnumIds() const; const EnumStringsContainerType &GetEnumStrings() const; EnumIdsContainerType &GetEnumIds(); EnumStringsContainerType &GetEnumStrings(); + /** + * Serializes the property to JSON. + * @note Classes deriving from EnumerationProperty are covered by this implementation and do not + * need to override this method again. + */ bool ToJSON(nlohmann::json& j) const override; + + /** + * Deserializes the property to JSON. + * @note Classes deriving from EnumerationProperty are covered by this implementation and do not + * need to override this method again. + */ bool FromJSON(const nlohmann::json& j) override; using BaseProperty::operator=; EnumerationProperty & operator=(const EnumerationProperty &) = delete; protected: /** * Default constructor. The current value of the enumeration is undefined. */ EnumerationProperty(); EnumerationProperty(const EnumerationProperty &); bool IsEqual(const BaseProperty &property) const override; bool Assign(const BaseProperty &property) override; mitkCloneMacro(Self); private: IdType m_CurrentValue; EnumIdsContainerType m_IdMap; EnumStringsContainerType m_NameMap; }; } #ifdef _MSC_VER # pragma warning(pop) #endif #endif diff --git a/Modules/Core/include/mitkIPropertyDeserialization.h b/Modules/Core/include/mitkIPropertyDeserialization.h index 8d1a43b8c2..7911bceb00 100644 --- a/Modules/Core/include/mitkIPropertyDeserialization.h +++ b/Modules/Core/include/mitkIPropertyDeserialization.h @@ -1,48 +1,61 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkIPropertyDeserialization_h #define mitkIPropertyDeserialization_h #include <mitkBaseProperty.h> #include <mitkServiceInterface.h> #include <MitkCoreExports.h> #include <itkSmartPointer.h> #include <string> #include <type_traits> namespace mitk { + /** + * \ingroup MicroServices_Interfaces + * \brief Interface of property deserialization service. + * + * This service allows you to register custom property types (derived from BaseProperty) for deserialization. + * If a property type is not registered, it cannot be deserialized, e.g. when deserializing a PropertyList. + */ class MITKCORE_EXPORT IPropertyDeserialization { public: virtual ~IPropertyDeserialization(); virtual BaseProperty::Pointer CreateInstance(const std::string& className) = 0; + /** + * \brief Register a custom property type for deserialization. + * + * The module activator of the module defining a property type is a good location to register + * custom property types of that module. See the implementation of MitkCoreActivator for + * examples. + */ template <typename T, typename = std::enable_if_t<std::is_base_of_v<BaseProperty, T>>> void RegisterProperty() { this->InternalRegisterProperty(T::New()); } protected: - virtual void InternalRegisterProperty(const BaseProperty* property) = 0; }; } MITK_DECLARE_SERVICE_INTERFACE(mitk::IPropertyDeserialization, "org.mitk.IPropertyDeserialization") #endif diff --git a/Modules/Core/include/mitkPropertyList.h b/Modules/Core/include/mitkPropertyList.h index 8e1ccfc8cc..763715f97b 100644 --- a/Modules/Core/include/mitkPropertyList.h +++ b/Modules/Core/include/mitkPropertyList.h @@ -1,249 +1,268 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkPropertyList_h #define mitkPropertyList_h #include <mitkIPropertyOwner.h> #include <mitkGenericProperty.h> #include <nlohmann/json_fwd.hpp> namespace mitk { /** * @brief Key-value list holding instances of BaseProperty * * This list is meant to hold an arbitrary list of "properties", * which should describe the object associated with this list. * * Usually you will use PropertyList as part of a DataNode * object - in this context the properties describe the data object * held by the DataNode (e.g. whether the object is rendered at * all, which color is used for rendering, what name should be * displayed for the object, etc.) * * The values in the list are not fixed, you may introduce any kind * of property that seems useful - all you have to do is inherit * from BaseProperty. * * The list is organized as a key-value pairs, i.e. * * \li "name" : pointer to a StringProperty * \li "visible" : pointer to a BoolProperty * \li "color" : pointer to a ColorProperty * \li "volume" : pointer to a FloatProperty * * Please see the documentation of SetProperty and ReplaceProperty for two * quite different semantics. Normally SetProperty is what you want - this * method will try to change the value of an existing property and will * not allow you to replace e.g. a ColorProperty with an IntProperty. * * Please also regard, that the key of a property must be a none empty string. * This is a precondition. Setting properties with empty keys will raise an exception. * * @ingroup DataManagement */ class MITKCORE_EXPORT PropertyList : public itk::Object, public IPropertyOwner { public: mitkClassMacroItkParent(PropertyList, itk::Object); /** * Method for creation through the object factory. */ itkFactorylessNewMacro(Self); itkCloneMacro(Self); /** * Map structure to hold the properties: the map key is a string, * the value consists of the actual property object (BaseProperty). */ typedef std::map<std::string, BaseProperty::Pointer> PropertyMap; typedef std::pair<std::string, BaseProperty::Pointer> PropertyMapElementType; // IPropertyProvider BaseProperty::ConstPointer GetConstProperty(const std::string &propertyKey, const std::string &contextName = "", bool fallBackOnDefaultContext = true) const override; std::vector<std::string> GetPropertyKeys(const std::string &contextName = "", bool includeDefaultContext = false) const override; std::vector<std::string> GetPropertyContextNames() const override; // IPropertyOwner BaseProperty * GetNonConstProperty(const std::string &propertyKey, const std::string &contextName = "", bool fallBackOnDefaultContext = true) override; void SetProperty(const std::string &propertyKey, BaseProperty *property, const std::string &contextName = "", bool fallBackOnDefaultContext = false) override; void RemoveProperty(const std::string &propertyKey, const std::string &contextName = "", bool fallBackOnDefaultContext = false) override; /** * @brief Get a property by its name. */ mitk::BaseProperty *GetProperty(const std::string &propertyKey) const; /** * @brief Set a property object in the list/map by reference. * * The actual OBJECT holding the value of the property is replaced by this function. * This is useful if you want to change the type of the property, like from BoolProperty to StringProperty. * Another use is to share one and the same property object among several PropertyList/DataNode objects, which * makes them appear synchronized. */ void ReplaceProperty(const std::string &propertyKey, BaseProperty *property); /** * @brief Set a property object in the list/map by reference. */ void ConcatenatePropertyList(PropertyList *pList, bool replace = false); //##Documentation //## @brief Convenience access method for GenericProperty<T> properties //## (T being the type of the second parameter) //## @return @a true property was found template <typename T> bool GetPropertyValue(const char *propertyKey, T &value) const { GenericProperty<T> *gp = dynamic_cast<GenericProperty<T> *>(GetProperty(propertyKey)); if (gp != nullptr) { value = gp->GetValue(); return true; } return false; } /** * @brief Convenience method to access the value of a BoolProperty */ bool GetBoolProperty(const char *propertyKey, bool &boolValue) const; /** * @brief ShortCut for the above method */ bool Get(const char *propertyKey, bool &boolValue) const; /** * @brief Convenience method to set the value of a BoolProperty */ void SetBoolProperty(const char *propertyKey, bool boolValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, bool boolValue); /** * @brief Convenience method to access the value of an IntProperty */ bool GetIntProperty(const char *propertyKey, int &intValue) const; /** * @brief ShortCut for the above method */ bool Get(const char *propertyKey, int &intValue) const; /** * @brief Convenience method to set the value of an IntProperty */ void SetIntProperty(const char *propertyKey, int intValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, int intValue); /** * @brief Convenience method to access the value of a FloatProperty */ bool GetFloatProperty(const char *propertyKey, float &floatValue) const; /** * @brief ShortCut for the above method */ bool Get(const char *propertyKey, float &floatValue) const; /** * @brief Convenience method to set the value of a FloatProperty */ void SetFloatProperty(const char *propertyKey, float floatValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, float floatValue); /** * @brief Convenience method to access the value of a DoubleProperty */ bool GetDoubleProperty(const char *propertyKey, double &doubleValue) const; /** * @brief ShortCut for the above method */ bool Get(const char *propertyKey, double &doubleValue) const; /** * @brief Convenience method to set the value of a DoubleProperty */ void SetDoubleProperty(const char *propertyKey, double doubleValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, double doubleValue); /** * @brief Convenience method to access the value of a StringProperty */ bool GetStringProperty(const char *propertyKey, std::string &stringValue) const; /** * @brief ShortCut for the above method */ bool Get(const char *propertyKey, std::string &stringValue) const; /** * @brief Convenience method to set the value of a StringProperty */ void SetStringProperty(const char *propertyKey, const char *stringValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, const char *stringValue); /** * @brief ShortCut for the above method */ void Set(const char *propertyKey, const std::string &stringValue); /** * @brief Get the timestamp of the last change of the map or the last change of one of * the properties store in the list (whichever is later). */ itk::ModifiedTimeType GetMTime() const override; /** * @brief Remove a property from the list/map. */ bool DeleteProperty(const std::string &propertyKey); const PropertyMap *GetMap() const { return &m_Properties; } bool IsEmpty() const { return m_Properties.empty(); } virtual void Clear(); + /** + * @brief Serialize the property list to JSON. + * + * @note Properties of a certain type can only be deseralized again if their type has been + * registered via the IPropertyDeserialization core service. + * + * @sa CoreServices + * @sa IPropertyDeserialization::RegisterProperty + */ void ToJSON(nlohmann::json& j) const; + + /** + * @brief Deserialize the property list from JSON. + * + * @note Properties of a certain type can only be deseralized again if their type has been + * registered via the IPropertyDeserialization core service. + * + * @sa CoreServices + * @sa IPropertyDeserialization::RegisterProperty + */ void FromJSON(const nlohmann::json& j); protected: PropertyList(); PropertyList(const PropertyList &other); ~PropertyList() override; /** * @brief Map of properties. */ PropertyMap m_Properties; private: itk::LightObject::Pointer InternalClone() const override; }; } // namespace mitk #endif diff --git a/Modules/ROI/include/mitkROI.h b/Modules/ROI/include/mitkROI.h index d580f5f9b5..5546f6100f 100644 --- a/Modules/ROI/include/mitkROI.h +++ b/Modules/ROI/include/mitkROI.h @@ -1,109 +1,195 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkROI_h #define mitkROI_h #include <mitkBaseData.h> #include <MitkROIExports.h> namespace mitk { + /** \brief A collection of region of interests (ROIs). + * + * ROIs, essentially defined by the minimum and maximum index coordinates of an axis-aligned box, are + * represented by the nested ROI::Element class. These index coordinates are relative to a common + * TimeGeometry. + * + * All ROIs are required to have a unique ID by which they can be accessed. + * + * ROIs can optionally have properties (PropertyList), also called default properties. In case of + * time-resolved ROIs, each time step can optionally have properties, too. These properties have + * precedence over the default properties. In other words, the default properties may contain + * fallback properties which are queried when a property is not defined at a certain time step. + * This allows for an opt-in dynamic appearance of ROIs over time, for example by changing + * color or opacity. + * + * ROIs are rendered both in 3-d and 2-d views as cubes, resp. cutting slices of these cubes. + * They support the following ROI::Element properties: + * + * - \c color (ColorProperty): Color of the cube + * - \c opacity (FloatProperty): Opacity of the cube + * - \c lineWidth (FloatProperty): %Line width of the cube edges + * + * ROIs display a customizable caption at their bottom-left corner. It is defined by the base data + * property \c caption (StringProperty). By default it is set to <tt>"{name} ({ID})"</tt>. Braces + * are used to define placeholders which are replaced by their corresponding ROI::Element properties. + * <tt>{ID}</tt> is a special placeholder which will be replaced by the ID of the ROI::Element instead. + * The caption is allowed to include line breaks. Rendering of captions can be customized through the + * following data node properties: + * + * - \c font.size (IntProperty) Font size in points + * - \c font.bold (BoolProperty) Bold font style + * - \c font.italic (BoolProperty) Italic font style + * + * See \ref MITKROIsPage for details on the JSON-based MITK %ROI file format. + */ class MITKROI_EXPORT ROI : public BaseData { public: + /** \brief Encapsulates a single (possibly time-resolved) %ROI. + * + * \sa ROI + */ class MITKROI_EXPORT Element : public IPropertyOwner { public: using PointsType = std::map<TimeStepType, Point3D>; using PropertyListsType = std::map<TimeStepType, PropertyList::Pointer>; Element(); explicit Element(unsigned int id); ~Element() = default; + /** \brief Get a const property. + * + * \note A time step can be specified as context. Use \c std::to_string() to convert a time step to a context name. + * An empty context name addresses the default properties. + */ BaseProperty::ConstPointer GetConstProperty(const std::string& propertyKey, const std::string& contextName = "", bool fallBackOnDefaultContext = true) const override; + + /** \brief Get all property keys. + * + * \note A time step can be specified as context. Use \c std::to_string() to convert a time step to a context name. + * An empty context name addresses the default properties. + */ std::vector<std::string> GetPropertyKeys(const std::string& contextName = "", bool includeDefaultContext = false) const override; + + /** \brief Get all property context names (stringified time steps). + */ std::vector<std::string> GetPropertyContextNames() const override; + /** \brief Get a property. + * + * \note A time step can be specified as context. Use \c std::to_string() to convert a time step to a context name. + * An empty context name addresses the default properties. + */ BaseProperty* GetNonConstProperty(const std::string& propertyKey, const std::string& contextName = "", bool fallBackOnDefaultContext = true) override; + + /** \brief Set a property. + * + * \note A time step can be specified as context. Use \c std::to_string() to convert a time step to a context name. + * An empty context name addresses the default properties. + */ void SetProperty(const std::string& propertyKey, BaseProperty* property, const std::string& contextName = "", bool fallBackOnDefaultContext = false) override; + + /** \brief Remove a property. + * + * \note A time step can be specified as context. Use \c std::to_string() to convert a time step to a context name. + * An empty context name addresses the default properties. + */ void RemoveProperty(const std::string& propertyKey, const std::string& contextName = "", bool fallBackOnDefaultContext = false) override; unsigned int GetID() const; void SetID(unsigned int id); + /** \brief Check if the %ROI is defined for a certain time step. + */ bool HasTimeStep(TimeStepType t) const; + + /** \brief Check if the %ROI can be considered time-resolved. + */ bool HasTimeSteps() const; + + /** \brief Get all valid time steps that have a minimum point and a maximum point. + */ std::vector<TimeStepType> GetTimeSteps() const; Point3D GetMin(TimeStepType t = 0) const; void SetMin(const Point3D& min, TimeStepType t = 0); Point3D GetMax(TimeStepType t = 0) const; void SetMax(const Point3D& max, TimeStepType t = 0); PropertyList* GetDefaultProperties() const; void SetDefaultProperties(PropertyList* properties); + /** \brief Get properties for a certain time step or \c nullptr if absent. + */ PropertyList* GetProperties(TimeStepType t = 0) const; + void SetProperties(PropertyList* properties, TimeStepType t = 0); private: unsigned int m_ID; PointsType m_Min; PointsType m_Max; PropertyList::Pointer m_DefaultProperties; PropertyListsType m_Properties; }; mitkClassMacro(ROI, BaseData) itkFactorylessNewMacro(Self) itkCloneMacro(Self) using ElementsType = std::map<unsigned int, Element>; using Iterator = ElementsType::iterator; using ConstIterator = ElementsType::const_iterator; size_t GetNumberOfElements() const; + + /** \brief Add a ROI::Element to the collection. + * + * \note The ID of the ROI::Element must be set to a unique number in advance. + */ void AddElement(const Element& element); const Element& GetElement(unsigned int id) const; Element& GetElement(unsigned int id); ConstIterator begin() const; ConstIterator end() const; Iterator begin(); Iterator end(); void SetRequestedRegionToLargestPossibleRegion() override; bool RequestedRegionIsOutsideOfTheBufferedRegion() override; bool VerifyRequestedRegion() override; void SetRequestedRegion(const itk::DataObject* data) override; protected: mitkCloneMacro(Self) ROI(); ROI(const Self& other); ~ROI() override; private: ElementsType m_Elements; }; MITKROI_EXPORT void to_json(nlohmann::json& j, const ROI::Element& roi); MITKROI_EXPORT void from_json(const nlohmann::json& j, ROI::Element& roi); } #endif diff --git a/Modules/ROI/include/mitkROIMapperLocalStorage.h b/Modules/ROI/include/mitkROIMapperLocalStorage.h index fddf8bfe67..567d1eca8e 100644 --- a/Modules/ROI/include/mitkROIMapperLocalStorage.h +++ b/Modules/ROI/include/mitkROIMapperLocalStorage.h @@ -1,43 +1,45 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkROIMapperLocalStorage_h #define mitkROIMapperLocalStorage_h #include <mitkMapper.h> template <class T> class vtkSmartPointer; class vtkPropAssembly; namespace mitk { + /** \brief Common base class for both 2-d and 3-d %ROI mapper local storages. + */ class ROIMapperLocalStorage : public Mapper::BaseLocalStorage { public: ROIMapperLocalStorage(); ~ROIMapperLocalStorage() override; vtkPropAssembly* GetPropAssembly() const; void SetPropAssembly(vtkPropAssembly* propAssembly); TimePointType GetLastTimePoint() const; void SetLastTimePoint(TimePointType timePoint); protected: vtkSmartPointer<vtkPropAssembly> m_PropAssembly; TimePointType m_LastTimePoint; }; } #endif diff --git a/Modules/ROI/src/mitkROIMapperHelper.h b/Modules/ROI/src/mitkROIMapperHelper.h index e6239fba1a..a529cc5b99 100644 --- a/Modules/ROI/src/mitkROIMapperHelper.h +++ b/Modules/ROI/src/mitkROIMapperHelper.h @@ -1,48 +1,60 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #ifndef mitkROIMapperHelper_h #define mitkROIMapperHelper_h #include <mitkBaseRenderer.h> #include <mitkROI.h> #include <vtkCaptionActor2D.h> #include <vtkProperty.h> #include <vtkSmartPointer.h> namespace mitk { namespace ROIMapperHelper { + /** \brief Apply %ROI properties at a certain time step to the given actor. + */ void ApplyIndividualProperties(const IPropertyProvider& properties, TimeStepType t, vtkActor* actor); + /** \brief Create an actor for the %ROI caption located at a certain attachment point considering several properties. + */ vtkSmartPointer<vtkCaptionActor2D> CreateCaptionActor(const std::string& caption, const Point3D& attachmentPoint, vtkProperty* property, const DataNode* dataNode, const BaseRenderer* renderer); + /** \brief Substitute all placeholders in a caption with corresponding property values. + * + * \sa ROI + */ std::string ParseCaption(const std::string& captionTemplate, const ROI::Element& roi, TimeStepType t = 0); + /** \brief Set common default properties for both 2-d and 3-d %ROI mappers. + */ void SetDefaultProperties(DataNode* node, BaseRenderer* renderer, bool override); + /** \brief Syntactic sugar for getting properties. + */ template <class T> const T* GetConstProperty(const std::string& propertyKey, const mitk::IPropertyProvider& properties, const std::string& contextName = "") { auto property = properties.GetConstProperty(propertyKey, contextName); if (property.IsNotNull()) return dynamic_cast<const T*>(property.GetPointer()); return nullptr; } } } #endif