Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Scene2D/FloatTextureSceneLayer.h @ 1770:073484e33bee
fix offset of textures
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 May 2021 10:53:37 +0200 |
parents | 9ac2a65d4172 |
children | 3889ae96d2e9 |
rev | line source |
---|---|
590 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
590 | 6 * |
7 * 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
|
8 * modify it under the terms of the GNU Lesser General Public License |
590 | 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 | |
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
|
14 * 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
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1571
diff
changeset
|
16 * |
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
|
17 * 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
|
18 * 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
|
19 * <http://www.gnu.org/licenses/>. |
590 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "TextureBaseSceneLayer.h" | |
26 | |
27 namespace OrthancStone | |
28 { | |
29 class FloatTextureSceneLayer : public TextureBaseSceneLayer | |
30 { | |
31 private: | |
32 ImageWindowing windowing_; | |
33 float customCenter_; | |
34 float customWidth_; | |
773
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
35 bool inverted_; |
1163 | 36 bool applyLog_; |
1533
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
37 bool isRangeComputed_; |
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
38 float minValue_; |
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
39 float maxValue_; |
590 | 40 |
41 public: | |
769
4ba8892870a2
improved interface for lookup tables
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
42 // The pixel format must be convertible to "Float32" |
1571 | 43 explicit FloatTextureSceneLayer(const Orthanc::ImageAccessor& texture); |
590 | 44 |
45 void SetWindowing(ImageWindowing windowing); | |
46 | |
47 void SetCustomWindowing(float customCenter, | |
48 float customWidth); | |
49 | |
50 void GetWindowing(float& targetCenter, | |
51 float& targetWidth) const; | |
52 | |
53 ImageWindowing GetWindowingType() const | |
54 { | |
55 return windowing_; | |
56 } | |
57 | |
773
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
58 // To achieve MONOCHROME1 photometric interpretation |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
59 void SetInverted(bool inverted); |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
60 |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
61 bool IsInverted() const |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
62 { |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
63 return inverted_; |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
64 } |
b8dfd966b5f4
FloatTextureSceneLayer::SetInverted()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
769
diff
changeset
|
65 |
590 | 66 void FitRange(); |
67 | |
1163 | 68 void SetApplyLog(bool apply); |
69 | |
70 bool IsApplyLog() const | |
71 { | |
72 return applyLog_; | |
73 } | |
74 | |
1533
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
75 void GetRange(float& minValue, |
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
76 float& maxValue); |
82279abb92d0
GrayscaleWindowingSceneTracker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
77 |
1571 | 78 virtual ISceneLayer* Clone() const ORTHANC_OVERRIDE; |
590 | 79 |
1571 | 80 virtual Type GetType() const ORTHANC_OVERRIDE |
590 | 81 { |
82 return Type_FloatTexture; | |
83 } | |
84 }; | |
85 } |