Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches
nrf_edgeai_process_features.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6#ifndef _NRF_EDGEAI_PRIVATE_INTERFACES_PROCESS_FEATURES_H_
7#define _NRF_EDGEAI_PRIVATE_INTERFACES_PROCESS_FEATURES_H_
8
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
28#define NRF_EDGEAI_DECLARE_PROCESS_FEATURES_INTERFACE(interface_name) \
29 nrf_edgeai_err_t nrf_edgeai_process_features_##interface_name( \
30 nrf_edgeai_input_t* p_input, \
31 nrf_edgeai_dsp_pipeline_t* p_dsp)
32
55
78
103
104#ifdef __cplusplus
105}
106#endif
107
108#endif /* _NRF_EDGEAI_PRIVATE_INTERFACES_PROCESS_FEATURES_H_ */
#define NRF_EDGEAI_DECLARE_PROCESS_FEATURES_INTERFACE(interface_name)
Macro to declare feature processing interface functions for various data types and processing modes.
Definition nrf_edgeai_process_features.h:28