From a7acb3cbabeb66ce647684466a04c96b2963c9c9 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Tue, 8 Jan 2019 13:48:44 +0000 Subject: COMPMID-1849: Implement CPPDetectionPostProcessLayer * Add DetectionPostProcessLayer * Add DetectionPostProcessLayer at the graph Change-Id: I7e56f6cffc26f112d26dfe74853085bb8ec7d849 Signed-off-by: Isabella Gottardi Reviewed-on: https://review.mlplatform.org/c/1639 Reviewed-by: Giuseppe Rossini Tested-by: Arm Jenkins --- arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h') diff --git a/arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h b/arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h index 71be8a0ad8..4e1b8f2a74 100644 --- a/arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h +++ b/arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h @@ -28,17 +28,10 @@ #include "arm_compute/core/Types.h" -#include - namespace arm_compute { class ITensor; -// Normalized Bounding Box [xmin, ymin, xmax, ymax] -using NormalizedBBox = std::array; -// LabelBBox used for map label and bounding box -using LabelBBox = std::map>; - /** CPP Function to generate the detection output based on location and confidence * predictions by doing non maximum suppression. * @@ -91,7 +84,7 @@ private: std::vector _all_location_predictions; std::vector>> _all_confidence_scores; - std::vector _all_prior_bboxes; + std::vector _all_prior_bboxes; std::vector> _all_prior_variances; std::vector _all_decode_bboxes; std::vector>> _all_indices; -- cgit v1.2.1