From 7234ed8c3d07c76963eb3bce9530994421ad7e67 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Tue, 27 Nov 2018 08:51:10 +0000 Subject: COMPMID-1808: Add Detection Output Layer to the GraphAPI COMPMID-1710: Integrate Detection ouput in MobilenetSSD graph example Change-Id: I384d1eb492ef14ece58f2023ad7bbc16f834450b Reviewed-on: https://review.mlplatform.org/356 Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez Reviewed-by: Georgios Pinitas --- arm_compute/graph/INodeVisitor.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'arm_compute/graph/INodeVisitor.h') diff --git a/arm_compute/graph/INodeVisitor.h b/arm_compute/graph/INodeVisitor.h index 2df2574d62..573d642892 100644 --- a/arm_compute/graph/INodeVisitor.h +++ b/arm_compute/graph/INodeVisitor.h @@ -71,6 +71,11 @@ public: * @param[in] n Node to visit. */ virtual void visit(DepthwiseConvolutionLayerNode &n) = 0; + /** Visit DetectionOutputLayerNode. + * + * @param[in] n Node to visit. + */ + virtual void visit(DetectionOutputLayerNode &n) = 0; /** Visit EltwiseLayerNode. * * @param[in] n Node to visit. @@ -170,6 +175,10 @@ public: { default_visit(); } + virtual void visit(DetectionOutputLayerNode &n) override + { + default_visit(); + } virtual void visit(DepthwiseConvolutionLayerNode &n) override { default_visit(); -- cgit v1.2.1