|
UFO 1.0.0
An Efficient Probabilistic 3D Mapping Framework That Embraces the Unknown
|
All core-related classes and functions. More...
Classes | |
| struct | ufo::Range< T >::Comparator |
| Comparator for interval ordering in associative containers. More... | |
| struct | ufo::Confidence |
| Represents a confidence score as a single float value. More... | |
| struct | ufo::Intensity |
| Represents LiDAR/sensor return intensity as a single float value. More... | |
| struct | ufo::Label |
| Represents a semantic class label as a single unsigned integer value. More... | |
| struct | ufo::Normal< Dim, T > |
| Represents an N-dimensional unit surface normal vector as a fixed-size array. More... | |
| struct | ufo::Range< T > |
| Represents a closed interval [lower, upper] of a scalar type. More... | |
| struct | ufo::Semantic |
| Represents a semantic annotation as a pair of class label and confidence score. More... | |
| class | ufo::Surfel |
| Represents an incremental surface element (surfel) that tracks the sufficient statistics of a 3D point set for online surface estimation. More... | |
| struct | ufo::Weight |
| Represents a generic scalar weight as a single float value. More... | |
Functions | |
| std::ostream & | ufo::operator<< (std::ostream &out, Confidence c) |
Writes the confidence score to out. | |
| std::ostream & | ufo::operator<< (std::ostream &out, Intensity i) |
Writes the raw intensity scalar to out. | |
| std::ostream & | ufo::operator<< (std::ostream &out, Label l) |
Writes the raw label integer to out. | |
| template<std::size_t Dim, class T > | |
| std::ostream & | ufo::operator<< (std::ostream &out, Normal< Dim, T > const &n) |
Writes a human-readable representation of n to os. | |
| template<class T > | |
| std::ostream & | ufo::operator<< (std::ostream &out, Range< T > const &r) |
Writes the range to p out in human-readable format. | |
| std::ostream & | ufo::operator<< (std::ostream &out, Semantic s) |
Writes the semantic as "label: confidence" to out. | |
| std::ostream & | ufo::operator<< (std::ostream &out, Surfel const &s) |
Writes a human-readable summary of the surfel to out. | |
| std::ostream & | ufo::operator<< (std::ostream &out, Weight v) |
Writes the raw scalar weight to out. | |
All core-related classes and functions.
Copyright (c) 2020-2026, Daniel Duberg All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
inline |
Writes the confidence score to out.
| [in,out] | out | Output stream. |
| [in] | c | Confidence to print. |
Definition at line 119 of file confidence.hpp.
|
inline |
Writes the raw intensity scalar to out.
Definition at line 119 of file intensity.hpp.
|
inline |
| std::ostream & ufo::operator<< | ( | std::ostream & | out, |
| Normal< Dim, T > const & | n | ||
| ) |
Writes a human-readable representation of n to os.
Definition at line 165 of file normal.hpp.
| std::ostream & ufo::operator<< | ( | std::ostream & | out, |
| Range< T > const & | r | ||
| ) |
Writes the range to p out in human-readable format.
| T | Scalar type. |
Degenerate: [a, a] -> "[a]" Range: [a, b] -> "[a..b]" Float: [a, b] -> "[a,b]"
|
inline |
Writes the semantic as "label: confidence" to out.
Definition at line 119 of file semantic.hpp.
|
inline |
Writes a human-readable summary of the surfel to out.
Empty surfel: "Surfel{empty}". Non-empty: "Surfel{n=N, mean=(x, y, z)}".
Definition at line 829 of file surfel.hpp.
|
inline |
Writes the raw scalar weight to out.
Definition at line 120 of file weight.hpp.