blob: 6400d3c367808f1ede602af1a9e8f917ca422126 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2019 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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_NEHOGDETECTOR_H
25#define ARM_COMPUTE_NEHOGDETECTOR_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/IHOG.h"
28#include "arm_compute/core/NEON/kernels/NEHOGDetectorKernel.h"
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000029#include "arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31namespace arm_compute
32{
33/** Basic function to execute HOG detector based on linear SVM. This function calls the following NEON kernel:
34 *
35 * -# @ref NEHOGDetectorKernel
36 *
37 */
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000038class NEHOGDetector : public INESimpleFunctionNoBorder
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039{
40public:
41 /** Initialise the kernel's input, output, HOG data object, detection window stride, threshold and index class
42 *
43 * @attention The function does not reset the number of values in @ref IDetectionWindowArray so it is caller's responsibility to clear it.
44 *
45 * @param[in] input Input tensor. It is the output of @ref NEHOGDescriptor. Data type supported: F32
46 * @param[in] hog HOG data-object that describes the HOG descriptor
47 * @param[out] detection_windows Array of @ref DetectionWindow used to store the detected objects
48 * @param[in] detection_window_stride Distance in pixels between 2 consecutive detection windows in x and y directions.
49 * It must be multiple of the block stride stored in hog
50 * @param[in] threshold (Optional) Threshold for the distance between features and SVM classifying plane
51 * @param[in] idx_class (Optional) Index of the class used for evaluating which class the detection window belongs to
52 */
53 void configure(const ITensor *input, const IHOG *hog, IDetectionWindowArray *detection_windows, const Size2D &detection_window_stride, float threshold = 0.0f, size_t idx_class = 0);
54};
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000055} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056
Michalis Spyrouf4643372019-11-29 16:17:13 +000057#endif /* ARM_COMPUTE_NEHOGDETECTOR_H */