aboutsummaryrefslogtreecommitdiff
path: root/tests/ObjectDetectionCommon.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ObjectDetectionCommon.hpp')
-rw-r--r--tests/ObjectDetectionCommon.hpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/ObjectDetectionCommon.hpp b/tests/ObjectDetectionCommon.hpp
index 85b54c255f..ee3afb5788 100644
--- a/tests/ObjectDetectionCommon.hpp
+++ b/tests/ObjectDetectionCommon.hpp
@@ -31,7 +31,7 @@ struct BoundingBox
struct DetectedObject
{
- DetectedObject(unsigned int detectedClass,
+ DetectedObject(float detectedClass,
const BoundingBox& boundingBox,
float confidence)
: m_Class(detectedClass)
@@ -39,11 +39,17 @@ struct DetectedObject
, m_Confidence(confidence)
{}
- unsigned int m_Class;
+ bool operator<(const DetectedObject& other) const
+ {
+ return m_Confidence < other.m_Confidence ||
+ (m_Confidence == other.m_Confidence && m_Class < other.m_Class);
+ }
+
+ float m_Class;
BoundingBox m_BoundingBox;
float m_Confidence;
};
-using ObjectDetectionInput = std::pair<std::string, DetectedObject>;
+using ObjectDetectionInput = std::pair<std::string, std::vector<DetectedObject>>;
} // anonymous namespace \ No newline at end of file