comparison Framework/Loaders/OrthancMultiframeVolumeLoader.h @ 1337:b1396be5aa27 broker

Moved the fixed loaders back from the dead
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 03 Apr 2020 16:13:06 +0200
parents
children 556b4bc19118
comparison
equal deleted inserted replaced
1334:04055b6b9e2c 1337:b1396be5aa27
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation, either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20
21
22 #pragma once
23
24 #include "LoaderStateMachine.h"
25 #include "../../Volumes/DicomVolumeImage.h"
26 #include "../Volumes/IGeometryProvider.h"
27
28 #include <boost/shared_ptr.hpp>
29
30 namespace OrthancStone
31 {
32 class OrthancMultiframeVolumeLoader :
33 public LoaderStateMachine,
34 public OrthancStone::IObservable,
35 public IGeometryProvider
36 {
37 private:
38 class LoadRTDoseGeometry;
39 class LoadGeometry;
40 class LoadTransferSyntax;
41 class LoadUncompressedPixelData;
42
43 boost::shared_ptr<OrthancStone::DicomVolumeImage> volume_;
44 std::string instanceId_;
45 std::string transferSyntaxUid_;
46 bool pixelDataLoaded_;
47 float outliersHalfRejectionRate_;
48 float distributionRawMin_;
49 float distributionRawMax_;
50 float computedDistributionMin_;
51 float computedDistributionMax_;
52
53 const std::string& GetInstanceId() const;
54
55 void ScheduleFrameDownloads();
56
57 void SetTransferSyntax(const std::string& transferSyntax);
58
59 void SetGeometry(const Orthanc::DicomMap& dicom);
60
61
62 /**
63 This method will :
64
65 - copy the pixel values from the response to the volume image
66 - compute the maximum and minimum value while discarding the
67 outliersHalfRejectionRate_ fraction of the outliers from both the start
68 and the end of the distribution.
69
70 In English, this means that, if the volume dataset contains a few extreme
71 values very different from the rest (outliers) that we want to get rid of,
72 this method allows to do so.
73
74 If you supply 0.005, for instance, it means 1% of the extreme values will
75 be rejected (0.5% on each side of the distribution)
76 */
77 template <typename T>
78 void CopyPixelDataAndComputeMinMax(const std::string& pixelData);
79
80 /** Service method for CopyPixelDataAndComputeMinMax*/
81 template <typename T>
82 void CopyPixelDataAndComputeDistribution(
83 const std::string& pixelData,
84 std::map<T, uint64_t>& distribution);
85
86 /** Service method for CopyPixelDataAndComputeMinMax*/
87 template <typename T>
88 void ComputeMinMaxWithOutlierRejection(
89 const std::map<T, uint64_t>& distribution);
90
91 void SetUncompressedPixelData(const std::string& pixelData);
92
93 bool HasGeometry() const;
94 const OrthancStone::VolumeImageGeometry& GetImageGeometry() const;
95
96 protected:
97 OrthancMultiframeVolumeLoader(
98 OrthancStone::ILoadersContext& loadersContext,
99 boost::shared_ptr<OrthancStone::DicomVolumeImage> volume,
100 float outliersHalfRejectionRate);
101 public:
102
103 static boost::shared_ptr<OrthancMultiframeVolumeLoader> Create(
104 OrthancStone::ILoadersContext& loadersContext,
105 boost::shared_ptr<OrthancStone::DicomVolumeImage> volume,
106 float outliersHalfRejectionRate = 0.0005);
107
108 virtual ~OrthancMultiframeVolumeLoader();
109
110 bool IsPixelDataLoaded() const
111 {
112 return pixelDataLoaded_;
113 }
114
115 void GetDistributionMinMax
116 (float& minValue, float& maxValue) const;
117
118 void GetDistributionMinMaxWithOutliersRejection
119 (float& minValue, float& maxValue) const;
120
121 void LoadInstance(const std::string& instanceId);
122 };
123 }