aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h5
-rw-r--r--arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h9
2 files changed, 0 insertions, 14 deletions
diff --git a/arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h b/arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h
index dd035d5cb1..351b9842c7 100644
--- a/arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h
+++ b/arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h
@@ -92,11 +92,6 @@ private:
float _iou_threshold;
unsigned int _num_boxes;
-
- std::vector<float> _scores_above_thd_vector;
- std::vector<int> _indices_above_thd_vector;
- std::vector<bool> _visited;
- std::vector<unsigned int> _sorted_indices;
};
} // namespace arm_compute
#endif /* __ARM_COMPUTE_CPP_NONMAXIMUMSUPPRESSIONKERNEL_LAYER_H__ */
diff --git a/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h b/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
index c13def67c7..1c918d220c 100644
--- a/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
+++ b/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
@@ -109,15 +109,6 @@ private:
Tensor _selected_indices;
Tensor _class_scores;
const ITensor *_input_scores_to_use;
-
- // Intermediate results
- std::vector<int> _result_idx_boxes_after_nms;
- std::vector<int> _result_classes_after_nms;
- std::vector<float> _result_scores_after_nms;
- std::vector<unsigned int> _sorted_indices;
-
- // Temporary values
- std::vector<float> _box_scores;
};
} // namespace arm_compute
#endif /* __ARM_COMPUTE_CPP_DETECTION_POSTPROCESS_H__ */