3#include "../_cexports/c_polimago.h"
5#include "../global.hpp"
6#include "../string.hpp"
19 class ClassificationResult
22 ClassificationResult(
const String &name,
double quality)
28 ClassificationResult() noexcept
61 bool operator==(
const ClassificationResult &other)
const noexcept
63 return (name_ == other.name_) && (quality_ == other.quality_);
61 bool operator==(
const ClassificationResult &other)
const noexcept {
…}
72 bool operator!=(
const ClassificationResult &other)
const noexcept
74 return !(*
this == other);
72 bool operator!=(
const ClassificationResult &other)
const noexcept {
…}
19 class ClassificationResult {
…};
String Name() const
Name of the pattern.
Definition classification_result.hpp:40
double Quality() const noexcept
Quality / Confidence of the classification result.
Definition classification_result.hpp:50
bool operator!=(const ClassificationResult &other) const noexcept
Compares to an other classification result.
Definition classification_result.hpp:72
bool operator==(const ClassificationResult &other) const noexcept
Compares to an other classification result.
Definition classification_result.hpp:61
Namespace for the Polimago package.
Definition classification_predictor.hpp:29
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17
std::string String
String for wide characters or unicode characters.
Definition string.hpp:49