Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
h
i
m
n
o
p
r
s
t
v
w
x
y
Typedefs
a
b
c
d
e
f
h
i
k
l
m
n
p
q
r
s
t
u
v
Enumerations
Enumerator
b
g
h
j
l
o
p
r
s
w
x
y
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
w
z
Related Functions
:
a
b
c
d
e
f
h
k
l
n
o
p
s
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
f
i
m
n
o
p
s
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
s
t
u
v
Enumerations
Enumerator
a
d
f
i
k
l
o
p
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
h
i
k
l
m
n
p
r
s
t
u
v
w
Examples
src
liblvr2
util
Util.cpp
Go to the documentation of this file.
1
28
#include <algorithm>
29
30
#include "
lvr2/util/Util.hpp
"
31
32
namespace
lvr2
33
{
34
35
int
Util::getSpectralChannel
(
int
wavelength,
PointBufferPtr
p
,
int
fallback)
36
{
37
UCharChannelOptional
spectral_channels =
p
->getUCharChannel(
"spectral_channels"
);
38
if
(!spectral_channels)
39
{
40
return
fallback;
41
}
42
43
int
minWavelength = *
p
->getIntAtomic(
"spectral_wavelength_min"
);
44
45
int
channel = (wavelength - minWavelength) /
wavelengthPerChannel
(
p
);
46
47
if
(channel < 0 || channel >= spectral_channels->width())
48
{
49
return
fallback;
50
}
51
52
return
channel;
53
}
54
55
int
Util::getSpectralWavelength
(
int
channel,
PointBufferPtr
p
,
int
fallback)
56
{
57
UCharChannelOptional
spectral_channels =
p
->getUCharChannel(
"spectral_channels"
);
58
if
(!spectral_channels)
59
{
60
return
fallback;
61
}
62
63
int
minWavelength = *
p
->getIntAtomic(
"spectral_wavelength_min"
);
64
65
if
(channel < 0 || channel >= spectral_channels->width())
66
{
67
return
fallback;
68
}
69
70
return
channel *
wavelengthPerChannel
(
p
) + minWavelength;
71
}
72
73
float
Util::wavelengthPerChannel
(
PointBufferPtr
p
)
74
{
75
UCharChannelOptional
spectral_channels =
p
->getUCharChannel(
"spectral_channels"
);
76
if
(!spectral_channels)
77
{
78
return
-1.0f;
79
}
80
81
int
minWavelength = *
p
->getIntAtomic(
"spectral_wavelength_min"
);
82
int
maxWavelength = *
p
->getIntAtomic(
"spectral_wavelength_max"
);
83
84
return
(maxWavelength - minWavelength) /
static_cast<
float
>
(spectral_channels->width());
85
}
86
87
}
// namespace lvr2
lvr2::Util::getSpectralChannel
static int getSpectralChannel(int wavelength, PointBufferPtr p, int fallback=-1)
Returns the spectral channel index for a given wavelength.
Definition:
Util.cpp:35
lvr2::UCharChannelOptional
UCharChannel::Optional UCharChannelOptional
Definition:
Channel.hpp:96
lvr2::PointBufferPtr
std::shared_ptr< PointBuffer > PointBufferPtr
Definition:
PointBuffer.hpp:130
p
SharedPointer p
Definition:
ConvertShared.hpp:42
lvr2::Util::getSpectralWavelength
static int getSpectralWavelength(int channel, PointBufferPtr p, int fallback=-1)
For a given spectral channel it return the corresponding wavelength.
Definition:
Util.cpp:55
Util.hpp
lvr2
Definition:
BaseBufferManipulators.hpp:39
lvr2::Util::wavelengthPerChannel
static float wavelengthPerChannel(PointBufferPtr p)
Calculates the wavelength distance between two spectral channels.
Definition:
Util.cpp:73
lvr2
Author(s): Thomas Wiemann
, Sebastian Pütz
, Alexander Mock
, Lars Kiesow
, Lukas Kalbertodt
, Tristan Igelbrink
, Johan M. von Behren
, Dominik Feldschnieders
, Alexander Löhr
autogenerated on Wed Mar 2 2022 00:37:25