Compute Library
 23.11
DetectionPostProcessLayerNode.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Arm Limited.
3  *
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  */
25 
26 #include "arm_compute/core/Utils.h"
30 
31 namespace arm_compute
32 {
33 namespace graph
34 {
36  : _info(detection_info)
37 {
38  _input_edges.resize(3, EmptyEdgeID);
39  _outputs.resize(4, NullTensorID);
40 }
41 
43 {
44  return _info;
45 }
46 
48 {
49  if ((input_id(0) != NullTensorID) && (input_id(1) != NullTensorID) && (input_id(2) != NullTensorID) &&
50  (output_id(0) != NullTensorID) && (output_id(1) != NullTensorID) && (output_id(2) != NullTensorID) &&
51  (output_id(3) != NullTensorID))
52  {
53  for (unsigned int i = 0; i < 4; ++i)
54  {
55  Tensor *dst = output(i);
56  ARM_COMPUTE_ERROR_ON(dst == nullptr);
57  dst->desc() = configure_output(i);
58  }
59  return true;
60  }
61  return false;
62 }
63 
65 {
66  ARM_COMPUTE_UNUSED(idx);
67  ARM_COMPUTE_ERROR_ON(idx >= _outputs.size());
68 
69  TensorDescriptor output_desc;
70  const unsigned int num_detected_box = _info.max_detections() * _info.max_classes_per_detection();
71 
72  switch (idx)
73  {
74  case 0:
75  // Configure boxes output
76  output_desc.shape = TensorShape(kNumCoordBox, num_detected_box, kBatchSize);
77  break;
78  case 1:
79  case 2:
80  // Configure classes or scores output
81  output_desc.shape = TensorShape(num_detected_box, kBatchSize);
82  break;
83  case 3:
84  // Configure num_detection
85  output_desc.shape = TensorShape(1);
86  break;
87  default:
88  ARM_COMPUTE_ERROR("Unsupported output index");
89  }
90  output_desc.data_type = DataType::F32;
91 
92  return output_desc;
93 }
94 
96 {
98 }
99 
101 {
102  v.visit(*this);
103 }
104 } // namespace graph
105 } // namespace arm_compute
arm_compute::graph::EmptyEdgeID
constexpr EdgeID EmptyEdgeID
Definition: Types.h:81
arm_compute::graph::DetectionPostProcessLayerNode::forward_descriptors
bool forward_descriptors() override
Forwards descriptor information to outputs if possible.
Definition: DetectionPostProcessLayerNode.cpp:47
INodeVisitor.h
arm_compute::DetectionPostProcessLayerInfo::max_detections
unsigned int max_detections() const
Get max detections.
Definition: Types.h:966
arm_compute::TensorShape
Shape of a tensor.
Definition: TensorShape.h:39
arm_compute::graph::INode::input_id
TensorID input_id(size_t idx) const
Returns the tensor ID of a given input of the node.
Definition: INode.cpp:137
arm_compute::test::validation::dst
auto dst
Definition: DFT.cpp:170
ARM_COMPUTE_ERROR
#define ARM_COMPUTE_ERROR(msg)
Print the given message then throw an std::runtime_error.
Definition: Error.h:354
arm_compute::graph::INode::output
Tensor * output(size_t idx) const
Returns the tensor of a given output of the node.
Definition: INode.cpp:158
arm_compute::graph::Tensor
Tensor object.
Definition: Tensor.h:40
ARM_COMPUTE_ERROR_ON
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:466
arm_compute::graph::DetectionPostProcessLayerNode::detection_post_process_info
DetectionPostProcessLayerInfo detection_post_process_info() const
DetectionPostProcess metadata accessor.
Definition: DetectionPostProcessLayerNode.cpp:42
arm_compute::DetectionPostProcessLayerInfo::max_classes_per_detection
unsigned int max_classes_per_detection() const
Get max_classes per detection.
Definition: Types.h:971
arm_compute::graph::NodeType
NodeType
Supported nodes.
Definition: Types.h:154
arm_compute::graph::INodeVisitor::visit
virtual void visit(INode &n)=0
Visit INode.
DetectionPostProcessLayerNode.h
arm_compute::graph::NodeType::DetectionPostProcessLayer
@ DetectionPostProcessLayer
arm_compute::graph::TensorDescriptor::shape
TensorShape shape
Tensor shape.
Definition: TensorDescriptor.h:113
ARM_COMPUTE_UNUSED
#define ARM_COMPUTE_UNUSED(...)
To avoid unused variables warnings.
Definition: Error.h:151
arm_compute::graph::DetectionPostProcessLayerNode::type
NodeType type() const override
Returns node's type.
Definition: DetectionPostProcessLayerNode.cpp:95
arm_compute::DetectionPostProcessLayerInfo
Detection Output layer info.
Definition: Types.h:917
arm_compute::graph::INodeVisitor
Node visitor interface.
Definition: INodeVisitor.h:34
arm_compute::graph::DetectionPostProcessLayerNode::configure_output
TensorDescriptor configure_output(size_t idx) const override
Calculates output configuration.
Definition: DetectionPostProcessLayerNode.cpp:64
arm_compute::graph::DetectionPostProcessLayerNode::accept
void accept(INodeVisitor &v) override
Accepts a node visitor.
Definition: DetectionPostProcessLayerNode.cpp:100
Utils.h
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::graph::TensorDescriptor
Tensor metadata class.
Definition: TensorDescriptor.h:38
arm_compute::graph::INode::output_id
TensorID output_id(size_t idx) const
Returns the tensor ID of a given output of the node.
Definition: INode.cpp:144
Utils.h
arm_compute::graph::NullTensorID
constexpr TensorID NullTensorID
Constant NodeID specifying an equivalent of null node.
Definition: Types.h:77
arm_compute::DataType::F32
@ F32
32-bit floating-point number
arm_compute::graph::TensorDescriptor::data_type
DataType data_type
Data type.
Definition: TensorDescriptor.h:114
arm_compute::graph::DetectionPostProcessLayerNode::DetectionPostProcessLayerNode
DetectionPostProcessLayerNode(DetectionPostProcessLayerInfo detection_info)
Constructor.
Definition: DetectionPostProcessLayerNode.cpp:35
Graph.h