MCPcopy Create free account
hub / github.com/ARM-software/armnn / BoundingBox

Class BoundingBox

tests/ObjectDetectionCommon.hpp:13–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11{
12
13struct BoundingBox
14{
15 BoundingBox()
16 : BoundingBox(0.0f, 0.0f, 0.0f, 0.0f)
17 {}
18
19 BoundingBox(float xMin, float yMin, float xMax, float yMax)
20 : m_XMin(xMin)
21 , m_YMin(yMin)
22 , m_XMax(xMax)
23 , m_YMax(yMax)
24 {}
25
26 float m_XMin;
27 float m_YMin;
28 float m_XMax;
29 float m_YMax;
30};
31
32struct DetectedObject
33{

Callers 2

ProcessResultMethod · 0.70

Calls

no outgoing calls

Tested by 1

ProcessResultMethod · 0.56