Mercurial > hg > orthanc-stone
annotate Framework/Toolbox/AffineTransform2D.h @ 822:76e8224bc300
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 29 May 2019 14:19:06 +0200 |
parents | 919226caca82 |
children | 7912de3a15e0 |
rev | line source |
---|---|
409 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
439 | 5 * Copyright (C) 2017-2019 Osimis S.A., Belgium |
409 | 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 #pragma once | |
23 | |
24 #include "../StoneEnumerations.h" | |
25 #include "LinearAlgebra.h" | |
26 | |
27 #include <Core/Images/ImageAccessor.h> | |
28 | |
29 namespace OrthancStone | |
30 { | |
31 class AffineTransform2D | |
32 { | |
33 private: | |
34 Matrix matrix_; | |
35 | |
36 public: | |
37 AffineTransform2D(); | |
38 | |
39 // The matrix must be 3x3, without perspective effects | |
40 AffineTransform2D(const Matrix& m); | |
41 | |
42 AffineTransform2D(const AffineTransform2D& other) : | |
43 matrix_(other.matrix_) | |
44 { | |
45 } | |
46 | |
47 const Matrix& GetHomogeneousMatrix() const | |
48 { | |
49 return matrix_; | |
50 } | |
51 | |
52 void Apply(double& x /* inout */, | |
53 double& y /* inout */) const; | |
54 | |
55 void Apply(Orthanc::ImageAccessor& target, | |
56 const Orthanc::ImageAccessor& source, | |
57 ImageInterpolation interpolation, | |
58 bool clear) const; | |
574
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
59 |
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
60 void ConvertToOpenGLMatrix(float target[16], |
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
61 unsigned int canvasWidth, |
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
62 unsigned int canvasHeight) const; |
575
919226caca82
AffineTransform2D::ComputeZoom()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
574
diff
changeset
|
63 |
919226caca82
AffineTransform2D::ComputeZoom()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
574
diff
changeset
|
64 double ComputeZoom() const; |
409 | 65 |
66 static AffineTransform2D Invert(const AffineTransform2D& a); | |
67 | |
68 static AffineTransform2D Combine(const AffineTransform2D& a, | |
69 const AffineTransform2D& b); | |
70 | |
71 static AffineTransform2D Combine(const AffineTransform2D& a, | |
72 const AffineTransform2D& b, | |
73 const AffineTransform2D& c); | |
74 | |
75 static AffineTransform2D Combine(const AffineTransform2D& a, | |
76 const AffineTransform2D& b, | |
77 const AffineTransform2D& c, | |
78 const AffineTransform2D& d); | |
79 | |
80 static AffineTransform2D CreateOffset(double dx, | |
81 double dy); | |
82 | |
83 static AffineTransform2D CreateScaling(double sx, | |
84 double sy); | |
85 | |
86 static AffineTransform2D CreateRotation(double angle); | |
574
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
87 |
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
88 static AffineTransform2D CreateOpenGLClipspace(unsigned int canvasWidth, |
911297a277c4
AffineTransform2D::ConvertToOpenGLMatrix()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
89 unsigned int canvasHeight); |
409 | 90 }; |
91 } |