Line |
Branch |
Exec |
Source |
1 |
|
|
// SPDX-FileCopyrightText: 2023 - 2025 Arm Limited and/or its affiliates <open-source-office@arm.com> |
2 |
|
|
// |
3 |
|
|
// SPDX-License-Identifier: Apache-2.0 |
4 |
|
|
|
5 |
|
|
#include "gaussian_blur_fixed_sc.h" |
6 |
|
|
|
7 |
|
|
namespace kleidicv::sme { |
8 |
|
|
|
9 |
|
|
KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t |
10 |
|
345 |
gaussian_blur_fixed_stripe_u8(const uint8_t *src, size_t src_stride, |
11 |
|
|
uint8_t *dst, size_t dst_stride, size_t width, |
12 |
|
|
size_t height, size_t y_begin, size_t y_end, |
13 |
|
|
size_t channels, size_t kernel_width, |
14 |
|
|
size_t kernel_height, float sigma_x, |
15 |
|
|
float sigma_y, FixedBorderType border_type, |
16 |
|
|
kleidicv_filter_context_t *context) { |
17 |
|
345 |
return gaussian_blur_fixed_stripe_u8_sc( |
18 |
|
345 |
src, src_stride, dst, dst_stride, width, height, y_begin, y_end, channels, |
19 |
|
345 |
kernel_width, kernel_height, sigma_x, sigma_y, border_type, context); |
20 |
|
|
} |
21 |
|
|
|
22 |
|
|
} // namespace kleidicv::sme |
23 |
|
|
|