|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved. |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | +*/ |
| 5 | + |
| 6 | +#ifndef OPENCV_FASTCV_BLUR_HPP |
| 7 | +#define OPENCV_FASTCV_BLUR_HPP |
| 8 | + |
| 9 | +#include <opencv2/core.hpp> |
| 10 | + |
| 11 | +namespace cv { |
| 12 | +namespace fastcv { |
| 13 | + |
| 14 | +/** |
| 15 | + * @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions |
| 16 | + */ |
| 17 | + |
| 18 | +//! @addtogroup fastcv |
| 19 | +//! @{ |
| 20 | + |
| 21 | +/** |
| 22 | + * @brief Gaussian blur with sigma = 0 and square kernel size. The way of handling borders is different with cv::GaussianBlur, |
| 23 | + * leading to slight variations in the output. |
| 24 | + * @param _src Intput image with type CV_8UC1 |
| 25 | + * @param _dst Output image with type CV_8UC1 |
| 26 | + * @param kernel_size Filer kernel size. One of 3, 5, 11 |
| 27 | + * @param blur_border If set to true, border is blurred by 0-padding adjacent values.(A variant of the constant border) |
| 28 | + * If set to false, borders up to half-kernel width are ignored (e.g. 1 pixel in the 3x3 case). |
| 29 | + * |
| 30 | + * @sa GaussianBlur |
| 31 | + */ |
| 32 | +CV_EXPORTS_W void gaussianBlur(InputArray _src, OutputArray _dst, int kernel_size = 3, bool blur_border = true); |
| 33 | + |
| 34 | +/** |
| 35 | + * @brief NxN correlation with non-separable kernel. Borders up to half-kernel width are ignored |
| 36 | + * @param _src Intput image with type CV_8UC1 |
| 37 | + * @param _dst Output image with type CV_8UC1, CV_16SC1 or CV_32FC1 |
| 38 | + * @param ddepth The depth of output image |
| 39 | + * @param _kernel Filer kernel data |
| 40 | + * |
| 41 | + * @sa Filter2D |
| 42 | + */ |
| 43 | +CV_EXPORTS_W void filter2D(InputArray _src, OutputArray _dst, int ddepth, InputArray _kernel); |
| 44 | + |
| 45 | +/** |
| 46 | + * @brief NxN correlation with separable kernel. If srcImg and dstImg point to the same address and srcStride equals to dstStride, |
| 47 | + * it will do in-place. Borders up to half-kernel width are ignored. |
| 48 | + * The way of handling overflow is different with OpenCV, this function will do right shift for |
| 49 | + * the intermediate results and final result. |
| 50 | + * @param _src Intput image with type CV_8UC1 |
| 51 | + * @param _dst Output image with type CV_8UC1, CV_16SC1 |
| 52 | + * @param ddepth The depth of output image |
| 53 | + * @param _kernelX Filer kernel data in x direction |
| 54 | + * @param _kernelY Filer kernel data in Y direction (For CV_16SC1, the kernelX and kernelY should be same) |
| 55 | + * |
| 56 | + * @sa sepFilter2D |
| 57 | + */ |
| 58 | +CV_EXPORTS_W void sepFilter2D(InputArray _src, OutputArray _dst, int ddepth, InputArray _kernelX, InputArray _kernelY); |
| 59 | +//! @} |
| 60 | + |
| 61 | +} // fastcv:: |
| 62 | +} // cv:: |
| 63 | + |
| 64 | +#endif // OPENCV_FASTCV_BLUR_HPP |
0 commit comments