diff --git a/Modules/ROI/autoload/IO/src/mitkROIIO.cpp b/Modules/ROI/autoload/IO/src/mitkROIIO.cpp index b992d658d1..d4adec7180 100644 --- a/Modules/ROI/autoload/IO/src/mitkROIIO.cpp +++ b/Modules/ROI/autoload/IO/src/mitkROIIO.cpp @@ -1,123 +1,124 @@ /*============================================================================ 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. ============================================================================*/ #include "mitkROIIO.h" #include <mitkROI.h> #include <mitkROIIOMimeTypes.h> #include <nlohmann/json.hpp> #include <filesystem> #include <fstream> namespace { mitk::Geometry3D::Pointer ReadGeometry(const nlohmann::json& jsonGeometry) { auto result = mitk::Geometry3D::New(); result->ImageGeometryOn(); if (!jsonGeometry.is_object()) mitkThrow() << "Geometry is expected to be a JSON object."; if (jsonGeometry.contains("Origin")) result->SetOrigin(jsonGeometry["Origin"].get<mitk::Point3D>()); if (jsonGeometry.contains("Spacing")) result->SetSpacing(jsonGeometry["Spacing"].get<mitk::Vector3D>()); if (jsonGeometry.contains("Size")) { auto size = jsonGeometry["Size"].get<mitk::Vector3D>(); mitk::BaseGeometry::BoundsArrayType bounds({ 0.0, size[0], 0.0, size[1], 0.0, size[2] }); result->SetBounds(bounds); } return result; } } mitk::ROIIO::ROIIO() : AbstractFileIO(ROI::GetStaticNameOfClass(), MitkROIIOMimeTypes::ROI_MIMETYPE(), "MITK ROI") { this->RegisterService(); } std::vector<mitk::BaseData::Pointer> mitk::ROIIO::DoRead() { auto *stream = this->GetInputStream(); std::ifstream fileStream; if (nullptr == stream) { auto filename = this->GetInputLocation(); if (filename.empty() || !std::filesystem::exists(filename)) mitkThrow() << "Invalid or nonexistent filename: \"" << filename << "\"!"; fileStream.open(filename); if (!fileStream.is_open()) mitkThrow() << "Could not open file \"" << filename << "\" for reading!"; stream = &fileStream; } auto result = ROI::New(); try { auto json = nlohmann::json::parse(*stream); if ("MITK ROI" != json["FileFormat"].get<std::string>()) mitkThrow() << "Unknown file format (expected \"MITK ROI\")!"; if (1 != json["Version"].get<int>()) mitkThrow() << "Unknown file format version (expected version 1)!"; result->SetGeometry(ReadGeometry(json["Geometry"])); if (json.contains("Properties")) { auto properties = mitk::PropertyList::New(); properties->FromJSON(json["Properties"]); result->GetPropertyList()->ConcatenatePropertyList(properties); } for (const auto& jsonROI : json["ROIs"]) { ROI::Element roi; + jsonROI["ID"].get_to(roi.ID); jsonROI["Min"].get_to(roi.Min); jsonROI["Max"].get_to(roi.Max); if (jsonROI.contains("Properties")) roi.Properties->FromJSON(jsonROI["Properties"]); result->AddElement(roi); } } catch (const nlohmann::json::exception &e) { mitkThrow() << e.what(); } return { result }; } void mitk::ROIIO::Write() { } mitk::ROIIO* mitk::ROIIO::IOClone() const { return new ROIIO(*this); } diff --git a/Modules/ROI/include/mitkROI.h b/Modules/ROI/include/mitkROI.h index fb5851e1d5..92e60cc288 100644 --- a/Modules/ROI/include/mitkROI.h +++ b/Modules/ROI/include/mitkROI.h @@ -1,79 +1,80 @@ /*============================================================================ 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 { class MITKROI_EXPORT ROI : public BaseData { public: struct MITKROI_EXPORT Element : IPropertyOwner { Element(); ~Element() = default; 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; 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; + unsigned int ID; Point3D Min; Point3D Max; PropertyList::Pointer Properties; }; mitkClassMacro(ROI, BaseData) itkFactorylessNewMacro(Self) itkCloneMacro(Self) using ElementsType = std::vector<Element>; using Iterator = ElementsType::iterator; using ConstIterator = ElementsType::const_iterator; size_t GetNumberOfElements() const; size_t AddElement(const Element& element); const Element* GetElement(size_t index) const; Element* GetElement(size_t index); 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; }; } #endif