blob: 6495ee74ac086c17da96f73083af591c9320b9bc [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"
Michalis Spyrou07781ac2017-08-31 15:11:41 +010030#include "support/Mutex.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32namespace arm_compute
33{
34class ITensor;
35
36/** NEON kernel to perform HOG detector kernel using linear SVM */
37class NEHOGDetectorKernel : public INEKernel
38{
39public:
40 /** Default constructor */
41 NEHOGDetectorKernel();
42 /** Prevent instances of this class from being copied (As this class contains pointers) */
43 NEHOGDetectorKernel(const NEHOGDetectorKernel &) = delete;
44 /** Prevent instances of this class from being copied (As this class contains pointers) */
45 NEHOGDetectorKernel &operator=(const NEHOGDetectorKernel &) = delete;
46 /** Allow instances of this class to be moved */
47 NEHOGDetectorKernel(NEHOGDetectorKernel &&) = default;
48 /** Allow instances of this class to be moved */
49 NEHOGDetectorKernel &operator=(NEHOGDetectorKernel &&) = default;
50 /** Default destructor */
51 ~NEHOGDetectorKernel() = default;
52
53 /** 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
54 *
55 * @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
56 * @param[in] hog HOG data object used by @ref NEHOGOrientationBinningKernel and @ref NEHOGBlockNormalizationKernel
57 * @param[out] detection_windows Array of @ref DetectionWindow. This array stores all the detected objects
58 * @param[in] detection_window_stride Distance in pixels between 2 consecutive detection windows in x and y directions.
59 * It must be multiple of the hog->info()->block_stride()
60 * @param[in] threshold (Optional) Threshold for the distance between features and SVM classifying plane
61 * @param[in] idx_class (Optional) Index of the class used for evaluating which class the detection window belongs to
62 */
63 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);
64
65 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +010066 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067
68private:
69 const ITensor *_input;
70 IDetectionWindowArray *_detection_windows;
71 const float *_hog_descriptor;
72 float _bias;
73 float _threshold;
74 uint16_t _idx_class;
75 size_t _num_bins_per_descriptor_x;
76 size_t _num_blocks_per_descriptor_y;
77 size_t _block_stride_width;
78 size_t _block_stride_height;
79 size_t _detection_window_width;
80 size_t _detection_window_height;
81 size_t _max_num_detection_windows;
Michalis Spyrou07781ac2017-08-31 15:11:41 +010082 arm_compute::Mutex _mutex;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083};
84}
85
86#endif /* __ARM_COMPUTE_NEHOGDETECTORKERNEL_H__ */