blob: e56d1e5fd8a4f580d5049ecf9a659f6b04177903 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 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 */
24#ifndef __ARM_COMPUTE_NEHOGDETECTORKERNEL_H__
25#define __ARM_COMPUTE_NEHOGDETECTORKERNEL_H__
26
27#include "arm_compute/core/IArray.h"
28#include "arm_compute/core/IHOG.h"
29#include "arm_compute/core/NEON/INEKernel.h"
30
31#include <mutex>
32
33namespace arm_compute
34{
35class ITensor;
36
37/** NEON kernel to perform HOG detector kernel using linear SVM */
38class NEHOGDetectorKernel : public INEKernel
39{
40public:
41 /** Default constructor */
42 NEHOGDetectorKernel();
43 /** Prevent instances of this class from being copied (As this class contains pointers) */
44 NEHOGDetectorKernel(const NEHOGDetectorKernel &) = delete;
45 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 NEHOGDetectorKernel &operator=(const NEHOGDetectorKernel &) = delete;
47 /** Allow instances of this class to be moved */
48 NEHOGDetectorKernel(NEHOGDetectorKernel &&) = default;
49 /** Allow instances of this class to be moved */
50 NEHOGDetectorKernel &operator=(NEHOGDetectorKernel &&) = default;
51 /** Default destructor */
52 ~NEHOGDetectorKernel() = default;
53
54 /** Initialise the kernel's input, HOG data-object, detection window, the stride of the detection window, the threshold and index of the object to detect
55 *
56 * @param[in] input Input tensor which stores the HOG descriptor obtained with @ref NEHOGOrientationBinningKernel. Data type supported: F32. Number of channels supported: equal to the number of histogram bins per block
57 * @param[in] hog HOG data object used by @ref NEHOGOrientationBinningKernel and @ref NEHOGBlockNormalizationKernel
58 * @param[out] detection_windows Array of @ref DetectionWindow. This array stores all the detected objects
59 * @param[in] detection_window_stride Distance in pixels between 2 consecutive detection windows in x and y directions.
60 * It must be multiple of the hog->info()->block_stride()
61 * @param[in] threshold (Optional) Threshold for the distance between features and SVM classifying plane
62 * @param[in] idx_class (Optional) Index of the class used for evaluating which class the detection window belongs to
63 */
64 void configure(const ITensor *input, const IHOG *hog, IDetectionWindowArray *detection_windows, const Size2D &detection_window_stride, float threshold = 0.0f, uint16_t idx_class = 0);
65
66 // Inherited methods overridden:
67 void run(const Window &window) override;
68
69private:
70 const ITensor *_input;
71 IDetectionWindowArray *_detection_windows;
72 const float *_hog_descriptor;
73 float _bias;
74 float _threshold;
75 uint16_t _idx_class;
76 size_t _num_bins_per_descriptor_x;
77 size_t _num_blocks_per_descriptor_y;
78 size_t _block_stride_width;
79 size_t _block_stride_height;
80 size_t _detection_window_width;
81 size_t _detection_window_height;
82 size_t _max_num_detection_windows;
83 std::mutex _mutex;
84};
85}
86
87#endif /* __ARM_COMPUTE_NEHOGDETECTORKERNEL_H__ */