Gazebo Rendering
API Reference
7.4.2
insert_drive_file
Tutorials
library_books
Classes
toc
Namespaces
insert_drive_file
Files
launch
Gazebo Website
Index
List
Hierarchy
Members: All
Members: Functions
Members: Variables
Members: Typedefs
Members: Enumerations
Members: Enumerator
List
Members
Functions
Typedefs
Variables
Enumerations
Enumerator
src
gz-rendering
include
gz
rendering
base
gz/rendering/base/BaseDistortionPass.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2021 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
#ifndef GZ_RENDERING_BASEDISTORTIONPASS_HH_
18
#define GZ_RENDERING_BASEDISTORTIONPASS_HH_
19
20
#include "
gz/rendering/DistortionPass.hh
"
21
22
namespace
gz
23
{
24
namespace
rendering
25
{
26
inline
namespace
GZ_RENDERING_VERSION_NAMESPACE {
27
//
28
/* \class BaseDistortionPass BaseDistortionPass.hh \
29
* gz/rendering/base/BaseDistortionPass.hh
30
*/
32
template
<
class
T>
33
class
BaseDistortionPass
:
34
public
virtual
DistortionPass
,
35
public
virtual
T
36
{
38
protected
:
BaseDistortionPass
();
39
41
public
:
virtual
~
BaseDistortionPass
();
42
43
// Documentation inherited.
44
public
:
double
K1()
const
;
45
46
// Documentation inherited.
47
public
:
double
K2()
const
;
48
49
// Documentation inherited.
50
public
:
double
K3()
const
;
51
52
// Documentation inherited.
53
public
:
double
P1()
const
;
54
55
// Documentation inherited.
56
public
:
double
P2()
const
;
57
58
// Documentation inherited.
59
public
:
math::Vector2d
Center()
const
;
60
61
// Documentation inherited.
62
public
:
void
SetK1(
double
_k1);
63
64
// Documentation inherited.
65
public
:
void
SetK2(
double
_k2);
66
67
// Documentation inherited.
68
public
:
void
SetK3(
double
_k3);
69
70
// Documentation inherited.
71
public
:
void
SetP1(
double
_p1);
72
73
// Documentation inherited.
74
public
:
void
SetP2(
double
_p2);
75
76
// Documentation inherited.
77
public
:
void
SetCenter(
const
math::Vector2d
&_center);
78
80
public
:
double
k1 = 0;
81
83
public
:
double
k2 = 0;
84
86
public
:
double
k3 = 0;
87
89
public
:
double
p1 = 0;
90
92
public
:
double
p2 = 0;
93
95
public
:
math::Vector2d
lensCenter = {0.5, 0.5};
96
};
97
99
// BaseDistortionPass
101
template
<
class
T>
102
BaseDistortionPass<T>::BaseDistortionPass
()
103
{
104
}
105
107
template
<
class
T>
108
BaseDistortionPass<T>::~BaseDistortionPass
()
109
{
110
}
111
113
template
<
class
T>
114
double
BaseDistortionPass<T>::K1
()
const
115
{
116
return
this->k1;
117
}
118
120
template
<
class
T>
121
double
BaseDistortionPass<T>::K2
()
const
122
{
123
return
this->k2;
124
}
125
127
template
<
class
T>
128
double
BaseDistortionPass<T>::K3
()
const
129
{
130
return
this->k3;
131
}
132
134
template
<
class
T>
135
double
BaseDistortionPass<T>::P1
()
const
136
{
137
return
this->p1;
138
}
139
141
template
<
class
T>
142
double
BaseDistortionPass<T>::P2
()
const
143
{
144
return
this->p2;
145
}
146
148
template
<
class
T>
149
math::Vector2d
BaseDistortionPass<T>::Center
()
const
150
{
151
return
this->lensCenter;
152
}
153
155
template
<
class
T>
156
void
BaseDistortionPass<T>::SetK1
(
double
_k1)
157
{
158
this->k1 = _k1;
159
}
160
162
template
<
class
T>
163
void
BaseDistortionPass<T>::SetK2
(
double
_k2)
164
{
165
this->k2 = _k2;
166
}
167
169
template
<
class
T>
170
void
BaseDistortionPass<T>::SetK3
(
double
_k3)
171
{
172
this->k3 = _k3;
173
}
174
176
template
<
class
T>
177
void
BaseDistortionPass<T>::SetP1
(
double
_p1)
178
{
179
this->p1 = _p1;
180
}
181
183
template
<
class
T>
184
void
BaseDistortionPass<T>::SetP2
(
double
_p2)
185
{
186
this->p2 = _p2;
187
}
188
190
template
<
class
T>
191
void
BaseDistortionPass<T>::SetCenter
(
const
math::Vector2d
&_center)
192
{
193
this->lensCenter = _center;
194
}
195
}
196
}
197
}
198
#endif