comparison OrthancStone/Sources/Loaders/OrthancMultiframeVolumeLoader.h @ 1512:244ad1e4e76a

reorganization of folders
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 07 Jul 2020 16:21:02 +0200
parents Framework/Loaders/OrthancMultiframeVolumeLoader.h@7f16987131e1
children 85e117739eca
comparison
equal deleted inserted replaced
1511:9dfeee74c1e6 1512:244ad1e4e76a
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 protected:
94 OrthancMultiframeVolumeLoader(
95 OrthancStone::ILoadersContext& loadersContext,
96 boost::shared_ptr<OrthancStone::DicomVolumeImage> volume,
97 float outliersHalfRejectionRate);
98 public:
99
100 static boost::shared_ptr<OrthancMultiframeVolumeLoader> Create(
101 OrthancStone::ILoadersContext& loadersContext,
102 boost::shared_ptr<OrthancStone::DicomVolumeImage> volume,
103 float outliersHalfRejectionRate = 0.0005);
104
105 virtual ~OrthancMultiframeVolumeLoader();
106
107 bool HasGeometry() const;
108 const OrthancStone::VolumeImageGeometry& GetImageGeometry() const;
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 }