Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Volumes/DicomVolumeImage.h @ 2177:4d21befb1501 default tip
clarify DICOMweb version check
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 23 Oct 2024 19:27:56 +0200 |
parents | 16c01cc201e7 |
children |
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 | |
2124
16c01cc201e7
updated copyright, as Osimis is not active on Orthanc anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2114
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
2114
c23eef785569
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2077
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
814 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
9 * modify it under the terms of the GNU Lesser General Public License |
814 | 10 * as published by the Free Software Foundation, either version 3 of |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
16 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
17 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
20 * <http://www.gnu.org/licenses/>. |
814 | 21 **/ |
22 | |
23 | |
24 #pragma once | |
25 | |
26 #include "../Messages/IMessage.h" | |
27 #include "../Toolbox/DicomInstanceParameters.h" | |
28 #include "ImageBuffer3D.h" | |
29 #include "VolumeImageGeometry.h" | |
30 | |
31 namespace OrthancStone | |
32 { | |
33 /** | |
34 This class combines a 3D image buffer, a 3D volume geometry and | |
35 information about the DICOM parameters of the series. | |
36 (MPR means MultiPlanar Reconstruction) | |
37 */ | |
38 class DicomVolumeImage : public boost::noncopyable | |
39 { | |
40 public: | |
1157 | 41 // TODO - Are these messages still useful? |
814 | 42 ORTHANC_STONE_DEFINE_ORIGIN_MESSAGE(__FILE__, __LINE__, GeometryReadyMessage, DicomVolumeImage); |
43 ORTHANC_STONE_DEFINE_ORIGIN_MESSAGE(__FILE__, __LINE__, ContentUpdatedMessage, DicomVolumeImage); | |
44 | |
45 private: | |
46 uint64_t revision_; | |
1298
8a0a62189f46
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
47 std::unique_ptr<VolumeImageGeometry> geometry_; |
8a0a62189f46
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
48 std::unique_ptr<ImageBuffer3D> image_; |
8a0a62189f46
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
49 std::unique_ptr<DicomInstanceParameters> parameters_; |
814 | 50 |
51 void CheckHasGeometry() const; | |
52 | |
53 public: | |
54 DicomVolumeImage() : | |
55 revision_(0) | |
56 { | |
57 } | |
58 | |
59 void IncrementRevision() | |
60 { | |
61 revision_ ++; | |
62 } | |
63 | |
64 void Initialize(const VolumeImageGeometry& geometry, | |
1157 | 65 Orthanc::PixelFormat format, |
66 bool computeRange = false); | |
814 | 67 |
1157 | 68 // Used by volume slicers |
814 | 69 void SetDicomParameters(const DicomInstanceParameters& parameters); |
70 | |
71 uint64_t GetRevision() const | |
72 { | |
73 return revision_; | |
74 } | |
75 | |
76 bool HasGeometry() const; | |
77 | |
78 ImageBuffer3D& GetPixelData(); | |
79 | |
80 const ImageBuffer3D& GetPixelData() const; | |
81 | |
82 const VolumeImageGeometry& GetGeometry() const; | |
83 | |
84 bool HasDicomParameters() const | |
85 { | |
86 return parameters_.get() != NULL; | |
87 } | |
88 | |
89 const DicomInstanceParameters& GetDicomParameters() const; | |
90 }; | |
91 } |