![]() |
Edge AI Add-on API 2.2.0
|
| uint16_t nrf_dsp_window_flatsliding_feed_i8 | ( | nrf_dsp_window_flatsliding_t * | p_ctx, |
| const int8_t * | p_input, | ||
| uint16_t | num ) |
#include <include/nrf_edgeai/dsp/utils/data_windowing/nrf_dsp_window_flatten_sliding.h>
Feeds INT8 samples to the INT8 flatten by colums window, with ordering by feature columns, e.g p_input = [x,y,z,x1,y1,z1] -> p_window = [x,x1,.., y,y1,.., z,z1,..].
| [in,out] | p_ctx | Pointer to the window context, should be initialized first nrf_dsp_window_flatsliding_init |
| [in] | p_input | Pointer to the feature sample buffer |
| [in] | num | Number of samples in the input buffer, num = buffer_size / p_ctx->uniq_features_num |