Loading [MathJax]/extensions/tex2jax.js
Version
nightly build
2.6.0 (latest)
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
Technische Universität Wien
Orientation and Processing of Airborne Laser Scanning data
Department of Geodesy and Geoinformation - Research Groups Photogrammetry and Remote Sensing
Main Page
Module List
Reference documentation
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
z
Functions
a
b
c
d
e
f
g
i
j
m
o
p
r
s
t
w
Variables
Typedefs
c
i
o
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
x
Classes
Class List
Class Index
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
_
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Typedefs
a
c
f
i
k
p
q
r
t
v
Enumerations
Enumerator
a
b
c
e
m
n
p
q
r
s
v
Examples
Video Tutorials
distroDM
c++_api
inc
DM
IIndexMapSetFactory.hpp
1
#pragma once
2
3
#include "DM/config.hpp"
4
#include "DM/IIndexMapSet.hpp"
5
6
DM_NAMESPACE_BEGIN
7
8
/// \brief Interface to a set of index map objects
9
class
DM_API
IIndexMapSetFactory
:
public
ObjectBase
10
{
11
public
:
12
static
IIndexMapSetFactory
* New();
13
14
// General member functions ====================================================================
15
/// add an ordered index map
16
virtual
void
addRandomIndexMap(
const
int
mapValue, int64_t valuesToAdd, int64_t maximumIndexValue) = 0;
17
18
virtual
IndexMapSetHandle
getIndexMapSet(
bool
clear =
true
) = 0;
19
};
20
21
typedef
Handle<IIndexMapSetFactory>
IndexMapSetFactoryHandle
;
22
23
DM_NAMESPACE_END
DM::IIndexMapSetFactory
Interface to a set of index map objects.
Definition:
IIndexMapSetFactory.hpp:9
DM::Handle
Smart pointer class using reference counting with support for DM objects (see ObjectBase)
Definition:
Handle.hpp:75
DM::ObjectBase
Definition:
M/c++_api/inc/DM/ObjectBase.hpp:8