Mercurial > hg > orthanc-stone
view OrthancStone/Sources/Toolbox/DicomInstanceParameters.h @ 1615:f5d4bd7b5593
new class: OsiriXLayerFactory
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 30 Oct 2020 17:26:44 +0100 |
parents | 8563ea5d8ae4 |
children | a4418a489e86 |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2020 Osimis S.A., Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/>. **/ #pragma once #include "../StoneEnumerations.h" #include "../Scene2D/LookupTableTextureSceneLayer.h" #include "../Toolbox/CoordinateSystem3D.h" #include <IDynamicObject.h> #include <DicomFormat/DicomImageInformation.h> namespace OrthancStone { class DicomInstanceParameters : public Orthanc::IDynamicObject /* to be used as a payload to SlicesSorter */ { // This class supersedes the deprecated "DicomFrameConverter" private: struct Data // Struct to ease the copy constructor { std::string orthancInstanceId_; std::string studyInstanceUid_; std::string seriesInstanceUid_; std::string sopInstanceUid_; Orthanc::DicomImageInformation imageInformation_; SopClassUid sopClassUid_; double thickness_; double pixelSpacingX_; double pixelSpacingY_; CoordinateSystem3D geometry_; Vector frameOffsets_; bool isColor_; bool hasRescale_; double rescaleIntercept_; double rescaleSlope_; bool hasDefaultWindowing_; float defaultWindowingCenter_; float defaultWindowingWidth_; Orthanc::PixelFormat expectedPixelFormat_; bool hasIndexInSeries_; unsigned int indexInSeries_; std::string doseUnits_; double doseGridScaling_; void ComputeDoseOffsets(const Orthanc::DicomMap& dicom); explicit Data(const Orthanc::DicomMap& dicom); CoordinateSystem3D GetFrameGeometry(unsigned int frame) const; bool IsPlaneWithinSlice(unsigned int frame, const CoordinateSystem3D& plane) const; void ApplyRescaleAndDoseScaling(Orthanc::ImageAccessor& image, bool useDouble) const; double ApplyRescale(double value) const; bool ComputeRegularSpacing(double& target) const; }; Data data_; public: explicit DicomInstanceParameters(const DicomInstanceParameters& other) : data_(other.data_) { } explicit DicomInstanceParameters(const Orthanc::DicomMap& dicom) : data_(dicom) { } DicomInstanceParameters* Clone() const { return new DicomInstanceParameters(*this); } void SetOrthancInstanceIdentifier(const std::string& id) { data_.orthancInstanceId_ = id; } const std::string& GetOrthancInstanceIdentifier() const { return data_.orthancInstanceId_; } const Orthanc::DicomImageInformation& GetImageInformation() const { return data_.imageInformation_; } const std::string& GetStudyInstanceUid() const { return data_.studyInstanceUid_; } const std::string& GetSeriesInstanceUid() const { return data_.seriesInstanceUid_; } const std::string& GetSopInstanceUid() const { return data_.sopInstanceUid_; } SopClassUid GetSopClassUid() const { return data_.sopClassUid_; } double GetThickness() const { return data_.thickness_; } double GetPixelSpacingX() const { return data_.pixelSpacingX_; } double GetPixelSpacingY() const { return data_.pixelSpacingY_; } const CoordinateSystem3D& GetGeometry() const { return data_.geometry_; } CoordinateSystem3D GetFrameGeometry(unsigned int frame) const { return data_.GetFrameGeometry(frame); } bool IsPlaneWithinSlice(unsigned int frame, const CoordinateSystem3D& plane) const { return data_.IsPlaneWithinSlice(frame, plane); } bool IsColor() const { return data_.isColor_; } bool HasRescale() const { return data_.hasRescale_; } double GetRescaleIntercept() const; double GetRescaleSlope() const; bool HasDefaultWindowing() const { return data_.hasDefaultWindowing_; } float GetDefaultWindowingCenter() const; float GetDefaultWindowingWidth() const; Orthanc::PixelFormat GetExpectedPixelFormat() const { return data_.expectedPixelFormat_; } Orthanc::ImageAccessor* ConvertToFloat(const Orthanc::ImageAccessor& pixelData) const; TextureBaseSceneLayer* CreateTexture(const Orthanc::ImageAccessor& pixelData) const; LookupTableTextureSceneLayer* CreateLookupTableTexture(const Orthanc::ImageAccessor& pixelData) const; bool HasIndexInSeries() const { return data_.hasIndexInSeries_; } unsigned int GetIndexInSeries() const; const std::string& GetDoseUnits() const { return data_.doseUnits_; } void SetDoseGridScaling(double value) { data_.doseGridScaling_ = value; } double GetDoseGridScaling() const { return data_.doseGridScaling_; } double ApplyRescale(double value) const { return data_.ApplyRescale(value); } // Required for RT-DOSE bool ComputeRegularSpacing(double& target) const { return data_.ComputeRegularSpacing(target); } }; }