Mercurial > hg > orthanc-stone
annotate Framework/Radiography/RadiographySceneReader.cpp @ 869:60a403f01c31 toa2019062503
Fixed WARN --> WARNING (unsure how this builds fine under Windows...)
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 25 Jun 2019 18:04:54 +0200 |
parents | be9c1530d40a |
children | 238693c3bc51 |
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 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
63 RadiographyDicomLayer* dicomLayer = NULL; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
64 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
|
65 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
66 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
|
67 RadiographyLayer::Geometry geometry; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
68 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
69 if (jsonLayer["type"].asString() == "dicom") |
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 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
72 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
|
73 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
74 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
|
75 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
76 if (dicomLayer == NULL) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
77 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
78 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
|
79 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
80 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
81 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
82 float foreground = jsonLayer["foreground"].asFloat(); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
83 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
|
84 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
|
85 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
86 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
|
87 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
|
88 corners.push_back(corner); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
89 } |
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 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
|
92 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
93 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
|
94 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
95 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
|
96 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
97 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
|
98 } |
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 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
101 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
|
102 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
|
103 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
104 font = &(fontRegistry_->GetFont(0)); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
105 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
106 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
|
107 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
108 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
|
109 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
110 ReadLayerGeometry(geometry, jsonLayer); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
111 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
112 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
|
113 std::string pngContent; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
114 std::string mimeType; |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
115 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
|
116 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
117 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
|
118 if (mimeType == "image/png") |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
119 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
120 image.reset(new Orthanc::PngReader()); |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
121 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
|
122 } |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
123 else |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
124 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
|
125 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
126 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
|
127 |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
128 if (!jsonLayer["isUsingWindowing"].asBool()) |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
129 { |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
130 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
|
131 } |
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 else |
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
134 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
|
135 } |
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 |
430 | 139 void RadiographySceneReader::Read(const Json::Value& input) |
140 { | |
141 unsigned int version = input["version"].asUInt(); | |
142 | |
143 if (version != 1) | |
144 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
145 | |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
146 RadiographyDicomLayer* dicomLayer = NULL; |
430 | 147 for(size_t layerIndex = 0; layerIndex < input["layers"].size(); layerIndex++) |
148 { | |
149 const Json::Value& jsonLayer = input["layers"][(int)layerIndex]; | |
150 RadiographyLayer::Geometry geometry; | |
151 | |
152 if (jsonLayer["type"].asString() == "dicom") | |
153 { | |
154 ReadLayerGeometry(geometry, jsonLayer); | |
481
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
155 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
|
156 } |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
157 else if (jsonLayer["type"].asString() == "mask") |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
158 { |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
159 if (dicomLayer == NULL) |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
160 { |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
161 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
|
162 } |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
163 ReadLayerGeometry(geometry, jsonLayer); |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
164 |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
165 float foreground = jsonLayer["foreground"].asFloat(); |
488 | 166 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
|
167 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
|
168 { |
488 | 169 Orthanc::ImageProcessing::ImagePoint corner(jsonLayer["corners"][(int)i]["x"].asInt(), |
170 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
|
171 corners.push_back(corner); |
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 |
159a465e27bd
reworked RadiographyScene export to export to an Orthanc::Image too
am@osimis.io
parents:
437
diff
changeset
|
174 scene_.LoadMask(corners, *dicomLayer, foreground, &geometry); |
430 | 175 } |
176 else if (jsonLayer["type"].asString() == "text") | |
177 { | |
178 if (fontRegistry_ == NULL || fontRegistry_->GetSize() == 0) | |
179 { | |
180 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); // you must provide a FontRegistry if you need to re-create text layers. | |
181 } | |
182 | |
183 ReadLayerGeometry(geometry, jsonLayer); | |
184 const Orthanc::Font* font = fontRegistry_->FindFont(jsonLayer["fontName"].asString()); | |
185 if (font == NULL) // if not found, take the first font in the registry | |
186 { | |
187 font = &(fontRegistry_->GetFont(0)); | |
188 } | |
189 scene_.LoadText(*font, jsonLayer["text"].asString(), &geometry); | |
190 } | |
191 else if (jsonLayer["type"].asString() == "alpha") | |
192 { | |
193 ReadLayerGeometry(geometry, jsonLayer); | |
194 | |
195 const std::string& pngContentBase64 = jsonLayer["content"].asString(); | |
196 std::string pngContent; | |
197 std::string mimeType; | |
198 Orthanc::Toolbox::DecodeDataUriScheme(mimeType, pngContent, pngContentBase64); | |
199 | |
200 std::auto_ptr<Orthanc::ImageAccessor> image; | |
201 if (mimeType == "image/png") | |
202 { | |
203 image.reset(new Orthanc::PngReader()); | |
204 dynamic_cast<Orthanc::PngReader*>(image.get())->ReadFromMemory(pngContent); | |
205 } | |
206 else | |
207 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
208 | |
209 RadiographyAlphaLayer& layer = dynamic_cast<RadiographyAlphaLayer&>(scene_.LoadAlphaBitmap(image.release(), &geometry)); | |
210 | |
211 if (!jsonLayer["isUsingWindowing"].asBool()) | |
212 { | |
213 layer.SetForegroundValue((float)(jsonLayer["foreground"].asDouble())); | |
214 } | |
215 } | |
216 else | |
217 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented); | |
218 } | |
219 } | |
220 | |
553
92305ee35b1c
web-worker consequences: give access to lower level data
Alain Mazy <alain@mazy.be>
parents:
488
diff
changeset
|
221 void RadiographySceneBuilder::ReadLayerGeometry(RadiographyLayer::Geometry& geometry, const Json::Value& jsonLayer) |
430 | 222 { |
223 {// crop | |
224 unsigned int x, y, width, height; | |
225 if (jsonLayer["crop"]["hasCrop"].asBool()) | |
226 { | |
227 x = jsonLayer["crop"]["x"].asUInt(); | |
228 y = jsonLayer["crop"]["y"].asUInt(); | |
229 width = jsonLayer["crop"]["width"].asUInt(); | |
230 height = jsonLayer["crop"]["height"].asUInt(); | |
231 geometry.SetCrop(x, y, width, height); | |
232 } | |
233 } | |
234 | |
235 geometry.SetAngle(jsonLayer["angle"].asDouble()); | |
236 geometry.SetResizeable(jsonLayer["isResizable"].asBool()); | |
237 geometry.SetPan(jsonLayer["pan"]["x"].asDouble(), jsonLayer["pan"]["y"].asDouble()); | |
238 geometry.SetPixelSpacing(jsonLayer["pixelSpacing"]["x"].asDouble(), jsonLayer["pixelSpacing"]["y"].asDouble()); | |
620 | 239 |
240 // these fields were introduced later -> they might not exist | |
629 | 241 if (jsonLayer.isMember("flipVertical")) |
620 | 242 { |
629 | 243 geometry.SetFlipVertical(jsonLayer["flipVertical"].asBool()); |
620 | 244 } |
629 | 245 if (jsonLayer.isMember("flipHorizontal")) |
620 | 246 { |
629 | 247 geometry.SetFlipHorizontal(jsonLayer["flipHorizontal"].asBool()); |
620 | 248 } |
249 | |
430 | 250 } |
251 } |