FFmpeg
|
#include "../dnn_interface.h"
Go to the source code of this file.
Functions | |
DNNModel * | ff_dnn_load_model_ov (const char *model_filename, DNNFunctionType func_type, const char *options, AVFilterContext *filter_ctx) |
DNNReturnType | ff_dnn_execute_model_ov (const DNNModel *model, const char *input_name, AVFrame *in_frame, const char **output_names, uint32_t nb_output, AVFrame *out_frame) |
DNNReturnType | ff_dnn_execute_model_async_ov (const DNNModel *model, const char *input_name, AVFrame *in_frame, const char **output_names, uint32_t nb_output, AVFrame *out_frame) |
DNNAsyncStatusType | ff_dnn_get_async_result_ov (const DNNModel *model, AVFrame **in, AVFrame **out) |
DNNReturnType | ff_dnn_flush_ov (const DNNModel *model) |
void | ff_dnn_free_model_ov (DNNModel **model) |
DNN inference functions interface for OpenVINO backend.
Definition in file dnn_backend_openvino.h.
DNNModel* ff_dnn_load_model_ov | ( | const char * | model_filename, |
DNNFunctionType | func_type, | ||
const char * | options, | ||
AVFilterContext * | filter_ctx | ||
) |
Definition at line 552 of file dnn_backend_openvino.c.
Referenced by ff_get_dnn_module().
DNNReturnType ff_dnn_execute_model_ov | ( | const DNNModel * | model, |
const char * | input_name, | ||
AVFrame * | in_frame, | ||
const char ** | output_names, | ||
uint32_t | nb_output, | ||
AVFrame * | out_frame | ||
) |
Definition at line 609 of file dnn_backend_openvino.c.
Referenced by ff_get_dnn_module().
DNNReturnType ff_dnn_execute_model_async_ov | ( | const DNNModel * | model, |
const char * | input_name, | ||
AVFrame * | in_frame, | ||
const char ** | output_names, | ||
uint32_t | nb_output, | ||
AVFrame * | out_frame | ||
) |
Definition at line 663 of file dnn_backend_openvino.c.
Referenced by ff_get_dnn_module().
DNNAsyncStatusType ff_dnn_get_async_result_ov | ( | const DNNModel * | model, |
AVFrame ** | in, | ||
AVFrame ** | out | ||
) |
Definition at line 718 of file dnn_backend_openvino.c.
Referenced by ff_get_dnn_module().
DNNReturnType ff_dnn_flush_ov | ( | const DNNModel * | model | ) |
Definition at line 739 of file dnn_backend_openvino.c.
Referenced by ff_get_dnn_module().
void ff_dnn_free_model_ov | ( | DNNModel ** | model | ) |
Definition at line 781 of file dnn_backend_openvino.c.
Referenced by ff_dnn_load_model_ov(), ff_get_dnn_module(), and init_model_ov().