From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- ...rmnn_1_1_detection_post_process_descriptor.html | 500 +++++++++++++++++++++ 1 file changed, 500 insertions(+) create mode 100644 23.11/structarmnn_1_1_detection_post_process_descriptor.html (limited to '23.11/structarmnn_1_1_detection_post_process_descriptor.html') diff --git a/23.11/structarmnn_1_1_detection_post_process_descriptor.html b/23.11/structarmnn_1_1_detection_post_process_descriptor.html new file mode 100644 index 0000000000..2cc0fcd5e8 --- /dev/null +++ b/23.11/structarmnn_1_1_detection_post_process_descriptor.html @@ -0,0 +1,500 @@ + + + + + + + + +Arm NN: DetectionPostProcessDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DetectionPostProcessDescriptor Struct Reference
+
+
+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for DetectionPostProcessDescriptor:
+
+
+
+
[legend]
+
+Collaboration diagram for DetectionPostProcessDescriptor:
+
+
+
+
[legend]
+ + + + + + + + + + + +

+Public Member Functions

 DetectionPostProcessDescriptor ()
 
bool operator== (const DetectionPostProcessDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Attributes

uint32_t m_MaxDetections
 Maximum numbers of detections. More...
 
uint32_t m_MaxClassesPerDetection
 Maximum numbers of classes per detection, used in Fast NMS. More...
 
uint32_t m_DetectionsPerClass
 Detections per classes, used in Regular NMS. More...
 
float m_NmsScoreThreshold
 NMS score threshold. More...
 
float m_NmsIouThreshold
 Intersection over union threshold. More...
 
uint32_t m_NumClasses
 Number of classes. More...
 
bool m_UseRegularNms
 Use Regular NMS. More...
 
float m_ScaleX
 Center size encoding scale x. More...
 
float m_ScaleY
 Center size encoding scale y. More...
 
float m_ScaleW
 Center size encoding scale weight. More...
 
float m_ScaleH
 Center size encoding scale height. More...
 
+

Detailed Description

+
+

Definition at line 713 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ DetectionPostProcessDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
DetectionPostProcessDescriptor ()
+
+inline
+
+ +

Definition at line 715 of file Descriptors.hpp.

+
716  : m_MaxDetections(0)
+ + + +
720  , m_NmsIouThreshold(0)
+
721  , m_NumClasses(0)
+
722  , m_UseRegularNms(false)
+
723  , m_ScaleX(0)
+
724  , m_ScaleY(0)
+
725  , m_ScaleW(0)
+
726  , m_ScaleH(0)
+
727  {}
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const DetectionPostProcessDescriptorrhs) const
+
+inline
+
+ +

Definition at line 729 of file Descriptors.hpp.

+
730  {
+
731  return m_MaxDetections == rhs.m_MaxDetections &&
+
732  m_MaxClassesPerDetection == rhs.m_MaxClassesPerDetection &&
+
733  m_DetectionsPerClass == rhs.m_DetectionsPerClass &&
+
734  m_NmsScoreThreshold == rhs.m_NmsScoreThreshold &&
+
735  m_NmsIouThreshold == rhs.m_NmsIouThreshold &&
+
736  m_NumClasses == rhs.m_NumClasses &&
+
737  m_UseRegularNms == rhs.m_UseRegularNms &&
+
738  m_ScaleX == rhs.m_ScaleX &&
+
739  m_ScaleY == rhs.m_ScaleY &&
+
740  m_ScaleW == rhs.m_ScaleW &&
+
741  m_ScaleH == rhs.m_ScaleH;
+
742  }
+
+

References DetectionPostProcessDescriptor::m_DetectionsPerClass, DetectionPostProcessDescriptor::m_MaxClassesPerDetection, DetectionPostProcessDescriptor::m_MaxDetections, DetectionPostProcessDescriptor::m_NmsIouThreshold, DetectionPostProcessDescriptor::m_NmsScoreThreshold, DetectionPostProcessDescriptor::m_NumClasses, DetectionPostProcessDescriptor::m_ScaleH, DetectionPostProcessDescriptor::m_ScaleW, DetectionPostProcessDescriptor::m_ScaleX, DetectionPostProcessDescriptor::m_ScaleY, and DetectionPostProcessDescriptor::m_UseRegularNms.

+ +
+
+

Member Data Documentation

+ +

◆ m_DetectionsPerClass

+ +
+
+ + + + +
uint32_t m_DetectionsPerClass
+
+
+ +

◆ m_MaxClassesPerDetection

+ +
+
+ + + + +
uint32_t m_MaxClassesPerDetection
+
+
+ +

◆ m_MaxDetections

+ + + +

◆ m_NmsIouThreshold

+ + + +

◆ m_NmsScoreThreshold

+ +
+
+ + + + +
float m_NmsScoreThreshold
+
+
+ +

◆ m_NumClasses

+ + + +

◆ m_ScaleH

+ +
+
+ + + + +
float m_ScaleH
+
+
+ +

◆ m_ScaleW

+ +
+
+ + + + +
float m_ScaleW
+
+
+ +

◆ m_ScaleX

+ +
+
+ + + + +
float m_ScaleX
+
+
+ +

◆ m_ScaleY

+ +
+
+ + + + +
float m_ScaleY
+
+
+ +

◆ m_UseRegularNms

+ +
+
+ + + + +
bool m_UseRegularNms
+
+
+
The documentation for this struct was generated from the following file: +
+
+
float m_NmsScoreThreshold
NMS score threshold.
+
float m_ScaleX
Center size encoding scale x.
+
float m_ScaleY
Center size encoding scale y.
+
uint32_t m_MaxDetections
Maximum numbers of detections.
+
float m_ScaleW
Center size encoding scale weight.
+
uint32_t m_MaxClassesPerDetection
Maximum numbers of classes per detection, used in Fast NMS.
+
uint32_t m_NumClasses
Number of classes.
+
float m_NmsIouThreshold
Intersection over union threshold.
+
uint32_t m_DetectionsPerClass
Detections per classes, used in Regular NMS.
+
float m_ScaleH
Center size encoding scale height.
+
bool m_UseRegularNms
Use Regular NMS.
+ + + + -- cgit v1.2.1