blob: 2affa8d49ecd2dc2985f433522baa210295aa1ca [file] [log] [blame]
Giuseppe Rossinid9853782019-10-25 11:11:44 +01001/*
Sheri Zhang6124ce62021-05-04 14:03:13 +01002 * Copyright (c) 2019-2021 Arm Limited.
Giuseppe Rossinid9853782019-10-25 11:11:44 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NE_DETECTION_POSTPROCESS_H
25#define ARM_COMPUTE_NE_DETECTION_POSTPROCESS_H
Giuseppe Rossinid9853782019-10-25 11:11:44 +010026
27#include "arm_compute/runtime/NEON/INESimpleFunction.h"
28
29#include "arm_compute/core/Types.h"
30#include "arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h"
31#include "arm_compute/runtime/IMemoryManager.h"
32#include "arm_compute/runtime/MemoryGroup.h"
33#include "arm_compute/runtime/NEON/functions/NEDequantizationLayer.h"
34#include "arm_compute/runtime/Tensor.h"
35
36#include <map>
37
38namespace arm_compute
39{
40class ITensor;
41
42/** NE Function to generate the detection output based on center size encoded boxes, class prediction and anchors
43 * by doing non maximum suppression.
44 *
45 * @note Intended for use with MultiBox detection method.
46 */
47class NEDetectionPostProcessLayer : public IFunction
48{
49public:
50 /** Constructor */
51 NEDetectionPostProcessLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
52 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 NEDetectionPostProcessLayer(const NEDetectionPostProcessLayer &) = delete;
54 /** Prevent instances of this class from being copied (As this class contains pointers) */
55 NEDetectionPostProcessLayer &operator=(const NEDetectionPostProcessLayer &) = delete;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010056 /** Default destructor */
57 ~NEDetectionPostProcessLayer() = default;
Giuseppe Rossinid9853782019-10-25 11:11:44 +010058 /** Configure the detection output layer NE function
59 *
Sheri Zhang6124ce62021-05-04 14:03:13 +010060 * Valid data layouts:
61 * - All
62 *
63 * Valid data type configurations:
64 * |src0 - src2 |dst0 - dst3 |
65 * |:--------------|:--------------|
66 * |QASYMM8 |F32 |
67 * |QASYMM8_SIGNED |F32 |
68 * |F32 |F32 |
69 *
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010070 * @param[in] input_box_encoding The bounding box input tensor. Data types supported: QASYMM8/QASYMM8_SIGNED/F32.
71 * @param[in] input_score The class prediction input tensor. Data types supported: same as @p input_box_encoding.
72 * @param[in] input_anchors The anchors input tensor. Data types supported: same as @p input_box_encoding.
Giuseppe Rossinid9853782019-10-25 11:11:44 +010073 * @param[out] output_boxes The boxes output tensor. Data types supported: F32.
74 * @param[out] output_classes The classes output tensor. Data types supported: Same as @p output_boxes.
75 * @param[out] output_scores The scores output tensor. Data types supported: Same as @p output_boxes.
76 * @param[out] num_detection The number of output detection. Data types supported: Same as @p output_boxes.
77 * @param[in] info (Optional) DetectionPostProcessLayerInfo information.
78 *
79 * @note Output contains all the detections. Of those, only the ones selected by the valid region are valid.
80 */
81 void configure(const ITensor *input_box_encoding, const ITensor *input_score, const ITensor *input_anchors,
82 ITensor *output_boxes, ITensor *output_classes, ITensor *output_scores, ITensor *num_detection, DetectionPostProcessLayerInfo info = DetectionPostProcessLayerInfo());
83 /** Static function to check if given info will lead to a valid configuration of @ref NEDetectionPostProcessLayer
84 *
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010085 * @param[in] input_box_encoding The bounding box input tensor info. Data types supported: QASYMM8/QASYMM8_SIGNED/F32.
86 * @param[in] input_class_score The class prediction input tensor info. Data types supported: same as @p input_box_encoding.
87 * @param[in] input_anchors The anchors input tensor info. Data types supported: same as @p input_box_encoding.
88 * @param[in] output_boxes The output tensor info. Data types supported: F32.
89 * @param[in] output_classes The output tensor info. Data types supported: Same as @p output_boxes.
90 * @param[in] output_scores The output tensor info. Data types supported: Same as @p output_boxes.
91 * @param[in] num_detection The number of output detection tensor info. Data types supported: Same as @p output_boxes.
92 * @param[in] info (Optional) DetectionPostProcessLayerInfo information.
Giuseppe Rossinid9853782019-10-25 11:11:44 +010093 *
94 * @return a status
95 */
96 static Status validate(const ITensorInfo *input_box_encoding, const ITensorInfo *input_class_score, const ITensorInfo *input_anchors,
97 ITensorInfo *output_boxes, ITensorInfo *output_classes, ITensorInfo *output_scores, ITensorInfo *num_detection,
98 DetectionPostProcessLayerInfo info = DetectionPostProcessLayerInfo());
99 // Inherited methods overridden:
100 void run() override;
101
102private:
103 MemoryGroup _memory_group;
104
105 NEDequantizationLayer _dequantize;
106 CPPDetectionPostProcessLayer _detection_post_process;
107
108 Tensor _decoded_scores;
109 bool _run_dequantize;
110};
111} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000112#endif /* ARM_COMPUTE_NE_DETECTION_POSTPROCESS_H */