FFmpeg
|
#include "../dnn_interface.h"
Go to the source code of this file.
Functions | |
DNNModel * | ff_dnn_load_model_tf (const char *model_filename, DNNFunctionType func_type, const char *options, AVFilterContext *filter_ctx) |
DNNReturnType | ff_dnn_execute_model_tf (const DNNModel *model, const char *input_name, AVFrame *in_frame, const char **output_names, uint32_t nb_output, AVFrame *out_frame) |
void | ff_dnn_free_model_tf (DNNModel **model) |
DNN inference functions interface for TensorFlow backend.
Definition in file dnn_backend_tf.h.
DNNModel* ff_dnn_load_model_tf | ( | const char * | model_filename, |
DNNFunctionType | func_type, | ||
const char * | options, | ||
AVFilterContext * | filter_ctx | ||
) |
Definition at line 667 of file dnn_backend_tf.c.
Referenced by ff_get_dnn_module().
DNNReturnType ff_dnn_execute_model_tf | ( | const DNNModel * | model, |
const char * | input_name, | ||
AVFrame * | in_frame, | ||
const char ** | output_names, | ||
uint32_t | nb_output, | ||
AVFrame * | out_frame | ||
) |
Definition at line 823 of file dnn_backend_tf.c.
Referenced by ff_get_dnn_module().
void ff_dnn_free_model_tf | ( | DNNModel ** | model | ) |
Definition at line 842 of file dnn_backend_tf.c.
Referenced by ff_get_dnn_module().