Mercurial > hg > orthanc-stone
annotate Framework/Radiography/RadiographySceneReader.cpp @ 902:fa5b945f8db8 am-dev
Merge
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Wed, 17 Jul 2019 09:53:51 +0200 |
parents | 238693c3bc51 |
children | 1e80a925323a |
rev | line source |
---|---|
430 | 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-2018 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 "RadiographySceneReader.h" | |
23 | |
732
c35e98d22764
move Deprecated classes to a separate folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
714
diff
changeset
|
24 #include "../Deprecated/Toolbox/DicomFrameConverter.h" |
650
200f7e1d57d1
Moved RadiographyDicomLayer::SetDicomFrameConverter to cpp file to prevent
Benjamin Golinvaux <bgo@osimis.io>
parents:
553
diff
changeset
|
25 |
430 | 26 #include <Core/Images/FontRegistry.h> |
27 #include <Core/Images/PngReader.h> | |
28 #include <Core/OrthancException.h> | |
29 #include <Core/Toolbox.h> | |
30 | |
31 namespace OrthancStone | |
32 { | |
553
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
33 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
34 void RadiographySceneBuilder::Read(const Json::Value& input, Orthanc::ImageAccessor* dicomImage /* takes ownership */, |
714
d2c0e347ddc2
deprecating DicomFrameConverter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
658
diff
changeset
|
35 Deprecated::DicomFrameConverter* dicomFrameConverter /* takes ownership */, |
739
be9c1530d40a
deprecating enum SliceImageQuality
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
732
diff
changeset
|
36 RadiographyPhotometricDisplayMode preferredPhotometricDisplayMode |
553
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
37 ) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
38 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
39 dicomImage_.reset(dicomImage); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
40 dicomFrameConverter_.reset(dicomFrameConverter); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
41 preferredPhotometricDisplayMode_ = preferredPhotometricDisplayMode; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
42 Read(input); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
43 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
44 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
45 RadiographyDicomLayer* RadiographySceneBuilder::LoadDicom(const std::string& instanceId, unsigned int frame, RadiographyLayer::Geometry* geometry) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
46 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
47 return dynamic_cast<RadiographyDicomLayer*>(&(scene_.LoadDicomImage(dicomImage_.release(), instanceId, frame, dicomFrameConverter_.release(), preferredPhotometricDisplayMode_, geometry))); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
48 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
49 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
50 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
51 RadiographyDicomLayer* RadiographySceneReader::LoadDicom(const std::string& instanceId, unsigned int frame, RadiographyLayer::Geometry* geometry) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
52 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
53 return dynamic_cast<RadiographyDicomLayer*>(&(scene_.LoadDicomFrame(orthancApiClient_, instanceId, frame, false, geometry))); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
54 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
55 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
56 void RadiographySceneBuilder::Read(const Json::Value& input) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
57 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
58 unsigned int version = input["version"].asUInt(); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
59 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
60 if (version != 1) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
61 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
62 |
772 | 63 if (input.isMember("hasWindowing") && input["hasWindowing"].asBool()) |
64 { | |
65 scene_.SetWindowing(input["windowCenter"].asFloat(), input["windowWidth"].asFloat()); | |
66 } | |
67 | |
553
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
68 RadiographyDicomLayer* dicomLayer = NULL; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
69 for(size_t layerIndex = 0; layerIndex < input["layers"].size(); layerIndex++) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
70 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
71 const Json::Value& jsonLayer = input["layers"][(int)layerIndex]; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
72 RadiographyLayer::Geometry geometry; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
73 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
74 if (jsonLayer["type"].asString() == "dicom") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
75 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
76 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
77 dicomLayer = LoadDicom(jsonLayer["instanceId"].asString(), jsonLayer["frame"].asUInt(), &geometry); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
78 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
79 else if (jsonLayer["type"].asString() == "mask") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
80 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
81 if (dicomLayer == NULL) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
82 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
83 throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError); // we always assumed the dicom layer was read before the mask |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
84 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
85 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
86 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
87 float foreground = jsonLayer["foreground"].asFloat(); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
88 std::vector<Orthanc::ImageProcessing::ImagePoint> corners; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
89 for (size_t i = 0; i < jsonLayer["corners"].size(); i++) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
90 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
91 Orthanc::ImageProcessing::ImagePoint corner(jsonLayer["corners"][(int)i]["x"].asInt(), |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
92 jsonLayer["corners"][(int)i]["y"].asInt()); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
93 corners.push_back(corner); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
94 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
95 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
96 scene_.LoadMask(corners, *dicomLayer, foreground, &geometry); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
97 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
98 else if (jsonLayer["type"].asString() == "text") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
99 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
100 if (fontRegistry_ == NULL || fontRegistry_->GetSize() == 0) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
101 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
102 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); // you must provide a FontRegistry if you need to re-create text layers. |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
103 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
104 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
105 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
106 const Orthanc::Font* font = fontRegistry_->FindFont(jsonLayer["fontName"].asString()); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
107 if (font == NULL) // if not found, take the first font in the registry |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
108 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
109 font = &(fontRegistry_->GetFont(0)); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
110 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
111 scene_.LoadText(*font, jsonLayer["text"].asString(), &geometry); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
112 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
113 else if (jsonLayer["type"].asString() == "alpha") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
114 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
115 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
116 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
117 const std::string& pngContentBase64 = jsonLayer["content"].asString(); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
118 std::string pngContent; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
119 std::string mimeType; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
120 Orthanc::Toolbox::DecodeDataUriScheme(mimeType, pngContent, pngContentBase64); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
121 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
122 std::auto_ptr<Orthanc::ImageAccessor> image; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
123 if (mimeType == "image/png") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
124 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
125 image.reset(new Orthanc::PngReader()); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
126 dynamic_cast<Orthanc::PngReader*>(image.get())->ReadFromMemory(pngContent); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
127 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
128 else |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
129 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
130 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
131 RadiographyAlphaLayer& layer = dynamic_cast<RadiographyAlphaLayer&>(scene_.LoadAlphaBitmap(image.release(), &geometry)); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
132 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
133 if (!jsonLayer["isUsingWindowing"].asBool()) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
134 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
135 layer.SetForegroundValue((float)(jsonLayer["foreground"].asDouble())); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
136 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
137 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
138 else |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
139 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
140 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
141 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
142 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
143 |
430 | 144 void RadiographySceneReader::Read(const Json::Value& input) |
145 { | |
146 unsigned int version = input["version"].asUInt(); | |
147 | |
148 if (version != 1) | |
149 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
150 | |
772 | 151 if (input.isMember("hasWindowing") && input["hasWindowing"].asBool()) |
152 { | |
153 scene_.SetWindowing(input["windowCenter"].asFloat(), input["windowWidth"].asFloat()); | |
154 } | |
155 | |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
156 RadiographyDicomLayer* dicomLayer = NULL; |
430 | 157 for(size_t layerIndex = 0; layerIndex < input["layers"].size(); layerIndex++) |
158 { | |
159 const Json::Value& jsonLayer = input["layers"][(int)layerIndex]; | |
160 RadiographyLayer::Geometry geometry; | |
161 | |
162 if (jsonLayer["type"].asString() == "dicom") | |
163 { | |
164 ReadLayerGeometry(geometry, jsonLayer); | |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
165 dicomLayer = dynamic_cast<RadiographyDicomLayer*>(&(scene_.LoadDicomFrame(orthancApiClient_, jsonLayer["instanceId"].asString(), jsonLayer["frame"].asUInt(), false, &geometry))); |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
166 } |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
167 else if (jsonLayer["type"].asString() == "mask") |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
168 { |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
169 if (dicomLayer == NULL) |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
170 { |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
171 throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError); // we always assumed the dicom layer was read before the mask |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
172 } |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
173 ReadLayerGeometry(geometry, jsonLayer); |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
174 |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
175 float foreground = jsonLayer["foreground"].asFloat(); |
488 | 176 std::vector<Orthanc::ImageProcessing::ImagePoint> corners; |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
177 for (size_t i = 0; i < jsonLayer["corners"].size(); i++) |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
178 { |
488 | 179 Orthanc::ImageProcessing::ImagePoint corner(jsonLayer["corners"][(int)i]["x"].asInt(), |
180 jsonLayer["corners"][(int)i]["y"].asInt()); | |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
181 corners.push_back(corner); |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
182 } |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
183 |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
184 scene_.LoadMask(corners, *dicomLayer, foreground, &geometry); |
430 | 185 } |
186 else if (jsonLayer["type"].asString() == "text") | |
187 { | |
188 if (fontRegistry_ == NULL || fontRegistry_->GetSize() == 0) | |
189 { | |
190 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); // you must provide a FontRegistry if you need to re-create text layers. | |
191 } | |
192 | |
193 ReadLayerGeometry(geometry, jsonLayer); | |
194 const Orthanc::Font* font = fontRegistry_->FindFont(jsonLayer["fontName"].asString()); | |
195 if (font == NULL) // if not found, take the first font in the registry | |
196 { | |
197 font = &(fontRegistry_->GetFont(0)); | |
198 } | |
199 scene_.LoadText(*font, jsonLayer["text"].asString(), &geometry); | |
200 } | |
201 else if (jsonLayer["type"].asString() == "alpha") | |
202 { | |
203 ReadLayerGeometry(geometry, jsonLayer); | |
204 | |
205 const std::string& pngContentBase64 = jsonLayer["content"].asString(); | |
206 std::string pngContent; | |
207 std::string mimeType; | |
208 Orthanc::Toolbox::DecodeDataUriScheme(mimeType, pngContent, pngContentBase64); | |
209 | |
210 std::auto_ptr<Orthanc::ImageAccessor> image; | |
211 if (mimeType == "image/png") | |
212 { | |
213 image.reset(new Orthanc::PngReader()); | |
214 dynamic_cast<Orthanc::PngReader*>(image.get())->ReadFromMemory(pngContent); | |
215 } | |
216 else | |
217 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
218 | |
219 RadiographyAlphaLayer& layer = dynamic_cast<RadiographyAlphaLayer&>(scene_.LoadAlphaBitmap(image.release(), &geometry)); | |
220 | |
221 if (!jsonLayer["isUsingWindowing"].asBool()) | |
222 { | |
223 layer.SetForegroundValue((float)(jsonLayer["foreground"].asDouble())); | |
224 } | |
225 } | |
226 else | |
227 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
228 } | |
229 } | |
230 | |
553
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
231 void RadiographySceneBuilder::ReadLayerGeometry(RadiographyLayer::Geometry& geometry, const Json::Value& jsonLayer) |
430 | 232 { |
233 {// crop | |
234 unsigned int x, y, width, height; | |
235 if (jsonLayer["crop"]["hasCrop"].asBool()) | |
236 { | |
237 x = jsonLayer["crop"]["x"].asUInt(); | |
238 y = jsonLayer["crop"]["y"].asUInt(); | |
239 width = jsonLayer["crop"]["width"].asUInt(); | |
240 height = jsonLayer["crop"]["height"].asUInt(); | |
241 geometry.SetCrop(x, y, width, height); | |
242 } | |
243 } | |
244 | |
245 geometry.SetAngle(jsonLayer["angle"].asDouble()); | |
246 geometry.SetResizeable(jsonLayer["isResizable"].asBool()); | |
247 geometry.SetPan(jsonLayer["pan"]["x"].asDouble(), jsonLayer["pan"]["y"].asDouble()); | |
248 geometry.SetPixelSpacing(jsonLayer["pixelSpacing"]["x"].asDouble(), jsonLayer["pixelSpacing"]["y"].asDouble()); | |
620 | 249 |
250 // these fields were introduced later -> they might not exist | |
629 | 251 if (jsonLayer.isMember("flipVertical")) |
620 | 252 { |
629 | 253 geometry.SetFlipVertical(jsonLayer["flipVertical"].asBool()); |
620 | 254 } |
629 | 255 if (jsonLayer.isMember("flipHorizontal")) |
620 | 256 { |
629 | 257 geometry.SetFlipHorizontal(jsonLayer["flipHorizontal"].asBool()); |
620 | 258 } |
259 | |
430 | 260 } |
261 } |