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::sve2 { |
8 |
|
|
|
9 |
|
|
KLEIDICV_TARGET_FN_ATTRS |
10 |
|
345 |
kleidicv_error_t gaussian_blur_fixed_stripe_u8( |
11 |
|
|
const uint8_t *src, size_t src_stride, uint8_t *dst, size_t dst_stride, |
12 |
|
|
size_t width, size_t height, size_t y_begin, size_t y_end, size_t channels, |
13 |
|
|
size_t kernel_width, size_t kernel_height, float sigma_x, float sigma_y, |
14 |
|
|
FixedBorderType border_type, kleidicv_filter_context_t *context) { |
15 |
|
345 |
return gaussian_blur_fixed_stripe_u8_sc( |
16 |
|
345 |
src, src_stride, dst, dst_stride, width, height, y_begin, y_end, channels, |
17 |
|
345 |
kernel_width, kernel_height, sigma_x, sigma_y, border_type, context); |
18 |
|
|
} |
19 |
|
|
|
20 |
|
|
} // namespace kleidicv::sve2 |
21 |
|
|
|