|
FFmpeg
|
Go to the source code of this file.
Data Structures | |
| struct | DNNData |
| struct | DNNExecBaseParams |
| struct | DNNExecClassificationParams |
| struct | DNNModel |
| struct | TFOptions |
| struct | OVOptions |
| struct | THOptions |
| struct | DnnContext |
| struct | DNNModule |
Macros | |
| #define | DNN_GENERIC_ERROR FFERRTAG('D','N','N','!') |
Typedefs | |
| typedef int(* | FramePrePostProc) (AVFrame *frame, DNNData *model, AVFilterContext *filter_ctx) |
| typedef int(* | DetectPostProc) (AVFrame *frame, DNNData *output, uint32_t nb, AVFilterContext *filter_ctx) |
| typedef int(* | ClassifyPostProc) (AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx) |
Enumerations | |
| enum | DNNBackendType { DNN_TF = 1, DNN_OV = 1 << 1, DNN_TH = 1 << 2 } |
| enum | DNNDataType { DNN_FLOAT = 1, DNN_UINT8 = 4 } |
| enum | DNNColorOrder { DCO_NONE, DCO_BGR, DCO_RGB } |
| enum | DNNAsyncStatusType { DAST_FAIL, DAST_EMPTY_QUEUE, DAST_NOT_READY, DAST_SUCCESS } |
| enum | DNNFunctionType { DFT_NONE, DFT_PROCESS_FRAME, DFT_ANALYTICS_DETECT, DFT_ANALYTICS_CLASSIFY } |
| enum | DNNLayout { DL_NONE, DL_NCHW, DL_NHWC } |
Functions | |
| const DNNModule * | ff_get_dnn_module (DNNBackendType backend_type, void *log_ctx) |
| void | ff_dnn_init_child_class (DnnContext *ctx) |
| void * | ff_dnn_child_next (DnnContext *obj, void *prev) |
| const AVClass * | ff_dnn_child_class_iterate_with_mask (void **iter, uint32_t backend_mask) |
| static int | dnn_get_width_idx_by_layout (DNNLayout layout) |
| static int | dnn_get_height_idx_by_layout (DNNLayout layout) |
| static int | dnn_get_channel_idx_by_layout (DNNLayout layout) |
DNN inference engine interface.
Definition in file dnn_interface.h.
| typedef int(* FramePrePostProc) (AVFrame *frame, DNNData *model, AVFilterContext *filter_ctx) |
Definition at line 93 of file dnn_interface.h.
| typedef int(* DetectPostProc) (AVFrame *frame, DNNData *output, uint32_t nb, AVFilterContext *filter_ctx) |
Definition at line 94 of file dnn_interface.h.
| typedef int(* ClassifyPostProc) (AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx) |
Definition at line 95 of file dnn_interface.h.
| enum DNNBackendType |
| Enumerator | |
|---|---|
| DNN_TF | |
| DNN_OV | |
| DNN_TH | |
Definition at line 35 of file dnn_interface.h.
| enum DNNDataType |
| Enumerator | |
|---|---|
| DNN_FLOAT | |
| DNN_UINT8 | |
Definition at line 41 of file dnn_interface.h.
| enum DNNColorOrder |
| Enumerator | |
|---|---|
| DCO_NONE | |
| DCO_BGR | |
| DCO_RGB | |
Definition at line 43 of file dnn_interface.h.
| enum DNNAsyncStatusType |
| Enumerator | |
|---|---|
| DAST_FAIL | |
| DAST_EMPTY_QUEUE | |
| DAST_NOT_READY | |
| DAST_SUCCESS | |
Definition at line 49 of file dnn_interface.h.
| enum DNNFunctionType |
| Enumerator | |
|---|---|
| DFT_NONE | |
| DFT_PROCESS_FRAME | |
| DFT_ANALYTICS_DETECT | |
| DFT_ANALYTICS_CLASSIFY | |
Definition at line 56 of file dnn_interface.h.
| enum DNNLayout |
| Enumerator | |
|---|---|
| DL_NONE | |
| DL_NCHW | |
| DL_NHWC | |
Definition at line 63 of file dnn_interface.h.
| const DNNModule* ff_get_dnn_module | ( | DNNBackendType | backend_type, |
| void * | log_ctx | ||
| ) |
Definition at line 83 of file dnn_interface.c.
Referenced by ff_dnn_init().
| void ff_dnn_init_child_class | ( | DnnContext * | ctx | ) |
Definition at line 96 of file dnn_interface.c.
Referenced by ff_dnn_filter_init_child_class().
| void* ff_dnn_child_next | ( | DnnContext * | obj, |
| void * | prev | ||
| ) |
Definition at line 104 of file dnn_interface.c.
Referenced by ff_dnn_filter_child_next(), and ff_dnn_init().
| const AVClass* ff_dnn_child_class_iterate_with_mask | ( | void ** | iter, |
| uint32_t | backend_mask | ||
| ) |
Definition at line 124 of file dnn_interface.c.
|
inlinestatic |
Definition at line 197 of file dnn_interface.h.
Referenced by allocate_input_tensor(), check_modelinput_inlink(), config_input(), ff_frame_to_dnn_classify(), ff_frame_to_dnn_detect(), fill_model_input_th(), get_input_ov(), and infer_completion_callback().
|
inlinestatic |
Definition at line 202 of file dnn_interface.h.
Referenced by allocate_input_tensor(), check_modelinput_inlink(), config_input(), ff_frame_to_dnn_classify(), ff_frame_to_dnn_detect(), fill_model_input_th(), get_input_ov(), and infer_completion_callback().
|
inlinestatic |
Definition at line 207 of file dnn_interface.h.
Referenced by allocate_input_tensor(), check_modelinput_inlink(), fill_model_input_th(), and infer_completion_callback().
1.8.17