3rdparty
libpointmatcher
pointmatcher
Histogram.h
Go to the documentation of this file.
1
// kate: replace-tabs off; indent-width 4; indent-mode normal
2
// vim: ts=4:sw=4:noexpandtab
3
/*
4
5
Copyright (c) 2010--2012,
6
François Pomerleau and Stephane Magnenat, ASL, ETHZ, Switzerland
7
You can contact the authors at <f dot pomerleau at gmail dot com> and
8
<stephane at magnenat dot net>
9
10
All rights reserved.
11
12
Redistribution and use in source and binary forms, with or without
13
modification, are permitted provided that the following conditions are met:
14
* Redistributions of source code must retain the above copyright
15
notice, this list of conditions and the following disclaimer.
16
* Redistributions in binary form must reproduce the above copyright
17
notice, this list of conditions and the following disclaimer in the
18
documentation and/or other materials provided with the distribution.
19
* Neither the name of the <organization> nor the
20
names of its contributors may be used to endorse or promote products
21
derived from this software without specific prior written permission.
22
23
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
24
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26
DISCLAIMED. IN NO EVENT SHALL ETH-ASL BE LIABLE FOR ANY
27
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34
*/
35
36
#ifndef __POINTMATCHER_HISTOGRAM_H
37
#define __POINTMATCHER_HISTOGRAM_H
38
39
#include <vector>
40
#include <string>
41
#include <stdint.h>
42
43
namespace
PointMatcherSupport
44
{
45
template
<
typename
T>
46
struct
Histogram
:
public
std::vector<T>
47
{
48
const
size_t
binCount
;
49
const
std::string
name
;
50
const
std::string
filePrefix
;
51
const
bool
dumpStdErrOnExit
;
52
53
Histogram
(
const
size_t
binCount
,
const
std::string
&
name
,
const
std::string
&
54
filePrefix
,
const
bool
dumpStdErrOnExit
);
55
56
virtual
~Histogram
();
57
59
std::vector<uint64_t>
computeStats
(T& meanV, T& varV, T& medianV, T& lowQt, T& highQt, T& minV, T& maxV, uint64_t& maxBinC);
60
61
void
dumpStats
(std::ostream& os);
62
void
dumpStatsHeader
(std::ostream& os)
const
;
63
};
64
}
// namespace PointMatcherSupport
65
66
#endif // __POINTMATCHER_HISTOGRAM_H
PointMatcherSupport::Histogram::computeStats
std::vector< uint64_t > computeStats(T &meanV, T &varV, T &medianV, T &lowQt, T &highQt, T &minV, T &maxV, uint64_t &maxBinC)
This function compute statistics and writes them into the variables passed as reference.
Definition:
Histogram.cpp:109
PointMatcherSupport::Histogram::binCount
const size_t binCount
Definition:
Histogram.h:48
PointMatcherSupport::Histogram::~Histogram
virtual ~Histogram()
Definition:
Histogram.cpp:60
PointMatcherSupport::Histogram::dumpStdErrOnExit
const bool dumpStdErrOnExit
Definition:
Histogram.h:51
testing::internal::string
::std::string string
Definition:
gtest.h:1979
PointMatcherSupport::Histogram::filePrefix
const std::string filePrefix
Definition:
Histogram.h:50
PointMatcherSupport::Histogram::dumpStatsHeader
void dumpStatsHeader(std::ostream &os) const
Definition:
Histogram.cpp:187
PointMatcherSupport::Histogram::name
const std::string name
Definition:
Histogram.h:49
PointMatcherSupport::Histogram::Histogram
Histogram(const size_t binCount, const std::string &name, const std::string &filePrefix, const bool dumpStdErrOnExit)
Definition:
Histogram.cpp:50
PointMatcherSupport
Functions and classes that are not dependant on scalar type are defined in this namespace.
Definition:
Bibliography.cpp:45
PointMatcherSupport::Histogram
Definition:
Histogram.h:46
PointMatcherSupport::Histogram::dumpStats
void dumpStats(std::ostream &os)
Definition:
Histogram.cpp:174
mp2p_icp
Author(s):
autogenerated on Wed Oct 23 2024 02:45:40