Mercurial > hg > orthanc-stone
annotate Framework/Scene2D/LookupTableStyleConfigurator.cpp @ 1106:c7388dfcd555
Added tag toa2019102801 for changeset 640feb146fa8
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Mon, 28 Oct 2019 11:14:05 +0100 |
parents | 287ec78f63b4 |
children | 177e7d431cd1 2d8ab34c8c91 |
rev | line source |
---|---|
814 | 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-2019 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 #include "LookupTableStyleConfigurator.h" | |
23 | |
24 #include <Core/OrthancException.h> | |
25 | |
26 namespace OrthancStone | |
27 { | |
1080
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
28 static void StringToVector(std::vector<uint8_t>& target, |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
29 const std::string& source) |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
30 { |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
31 target.resize(source.size()); |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
32 |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
33 for (size_t i = 0; i < source.size(); i++) |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
34 { |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
35 target[i] = source[i]; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
36 } |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
37 } |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
38 |
814 | 39 LookupTableStyleConfigurator::LookupTableStyleConfigurator() : |
40 revision_(0), | |
41 hasLut_(false), | |
42 hasRange_(false) | |
43 { | |
44 } | |
45 | |
46 void LookupTableStyleConfigurator::SetLookupTable(Orthanc::EmbeddedResources::FileResourceId resource) | |
47 { | |
48 hasLut_ = true; | |
1080
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
49 std::string tmp; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
50 Orthanc::EmbeddedResources::GetFileResource(tmp, resource); |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
51 SetLookupTable(tmp); |
814 | 52 } |
53 | |
1080
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
54 void LookupTableStyleConfigurator::SetLookupTable(const std::vector<uint8_t>& lut) |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
55 { |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
56 hasLut_ = true; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
57 lut_ = lut; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
58 revision_++; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
59 } |
814 | 60 |
61 void LookupTableStyleConfigurator::SetLookupTable(const std::string& lut) | |
62 { | |
1080
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
63 std::vector<uint8_t> tmp; |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
64 StringToVector(tmp, lut); |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
65 SetLookupTable(tmp); |
814 | 66 } |
67 | |
68 void LookupTableStyleConfigurator::SetRange(float minValue, | |
69 float maxValue) | |
70 { | |
71 if (minValue > maxValue) | |
72 { | |
73 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); | |
74 } | |
75 else | |
76 { | |
1080
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
77 if ((!hasRange_) || (minValue_ != minValue) || (maxValue_ != maxValue)) |
287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
Benjamin Golinvaux <bgo@osimis.io>
parents:
814
diff
changeset
|
78 revision_++; |
814 | 79 hasRange_ = true; |
80 minValue_ = minValue; | |
81 maxValue_ = maxValue; | |
82 } | |
83 } | |
84 | |
85 TextureBaseSceneLayer* LookupTableStyleConfigurator::CreateTextureFromImage(const Orthanc::ImageAccessor& image) const | |
86 { | |
87 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
88 } | |
89 | |
90 void LookupTableStyleConfigurator::ApplyStyle(ISceneLayer& layer) const | |
91 { | |
92 LookupTableTextureSceneLayer& l = dynamic_cast<LookupTableTextureSceneLayer&>(layer); | |
93 | |
94 if (hasLut_) | |
95 { | |
96 l.SetLookupTable(lut_); | |
97 } | |
98 | |
99 if (hasRange_) | |
100 { | |
101 l.SetRange(minValue_, maxValue_); | |
102 } | |
103 else | |
104 { | |
105 l.FitRange(); | |
106 } | |
107 } | |
108 } |