blob: e81b4ce33ae3635891b699c38cb84c8317dd3415 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrouebcebf12020-10-21 00:04:14 +01002 * Copyright (c) 2016-2020 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_NEEQUALIZEHISTOGRAM_H
25#define ARM_COMPUTE_NEEQUALIZEHISTOGRAM_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/runtime/Distribution1D.h"
28#include "arm_compute/runtime/IFunction.h"
29#include "arm_compute/runtime/Lut.h"
30
31#include <cstdint>
32
33namespace arm_compute
34{
35class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010036class NEHistogramKernel;
37class NECumulativeDistributionKernel;
38class NETableLookupKernel;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039using IImage = ITensor;
40
41/** Basic function to execute histogram equalization. This function calls the following NEON kernels:
42 *
43 * -# @ref NEHistogramKernel
44 * -# @ref NECumulativeDistributionKernel
45 * -# @ref NETableLookupKernel
46 *
morgolock0c862652020-11-06 08:59:45 +000047 * @deprecated This function is deprecated and is intended to be removed in 21.05 release
48 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 */
50class NEEqualizeHistogram : public IFunction
51{
52public:
53 /** Default Constructor. */
54 NEEqualizeHistogram();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010055 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 NEEqualizeHistogram(const NEEqualizeHistogram &) = delete;
57 /** Prevent instances of this class from being copied (As this class contains pointers) */
58 NEEqualizeHistogram &operator=(const NEEqualizeHistogram &) = delete;
59 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
60 NEEqualizeHistogram(NEEqualizeHistogram &&) = delete;
61 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
62 NEEqualizeHistogram &operator=(NEEqualizeHistogram &&) = delete;
63 /** Default destructor */
64 ~NEEqualizeHistogram();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 /** Initialise the kernel's inputs.
66 *
67 * @note Currently the width of the input image must be a multiple of 16.
68 *
69 * @param[in] input Input image. Data type supported: U8.
70 * @param[out] output Output image. Data type supported: same as @p input
71 */
72 void configure(const IImage *input, IImage *output);
73
74 // Inherited methods overridden:
75 void run() override;
76
77private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +010078 std::unique_ptr<NEHistogramKernel> _histogram_kernel; /**< Kernel that calculates the histogram of input. */
79 std::unique_ptr<NECumulativeDistributionKernel> _cd_histogram_kernel; /**< Kernel that calculates the cumulative distribution
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 and creates the relevant LookupTable. */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010081 std::unique_ptr<NETableLookupKernel> _map_histogram_kernel; /**< Kernel that maps the input to output using the lut. */
82 Distribution1D _hist; /**< Distribution that holds the histogram of the input image. */
83 Distribution1D _cum_dist; /**< Distribution that holds the cummulative distribution of the input histogram. */
84 Lut _cd_lut; /**< Holds the equalization lookuptable. */
85 static constexpr uint32_t nr_bins{ 256 }; /**< Histogram bins of the internal histograms. */
86 static constexpr uint32_t max_range{ nr_bins - 1 }; /**< Histogram range of the internal histograms. */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087};
88}
Michalis Spyrouf4643372019-11-29 16:17:13 +000089#endif /*ARM_COMPUTE_NEEQUALIZEHISTOGRAM_H */