|
FFmpeg
|
Go to the source code of this file.
Data Structures | |
| struct | Layer |
| struct | ConvolutionalParams |
| struct | InputParams |
| struct | DepthToSpaceParams |
| struct | ConvolutionalNetwork |
Enumerations | |
| enum | DNNLayerType { INPUT, CONV, DEPTH_TO_SPACE } |
| enum | DNNActivationFunc { RELU, TANH, SIGMOID, NONE, LEAKY_RELU } |
| enum | DNNConvPaddingParam { VALID, SAME, SAME_CLAMP_TO_EDGE } |
Functions | |
| DNNModel * | ff_dnn_load_model_native (const char *model_filename) |
| DNNReturnType | ff_dnn_execute_model_native (const DNNModel *model, DNNData *outputs, uint32_t nb_output) |
| void | ff_dnn_free_model_native (DNNModel **model) |
DNN inference functions interface for native backend.
Definition in file dnn_backend_native.h.
| enum DNNLayerType |
| Enumerator | |
|---|---|
| INPUT | |
| CONV | |
| DEPTH_TO_SPACE | |
Definition at line 33 of file dnn_backend_native.h.
| enum DNNActivationFunc |
| Enumerator | |
|---|---|
| RELU | |
| TANH | |
| SIGMOID | |
| NONE | |
| LEAKY_RELU | |
Definition at line 35 of file dnn_backend_native.h.
| enum DNNConvPaddingParam |
| Enumerator | |
|---|---|
| VALID | |
| SAME | |
| SAME_CLAMP_TO_EDGE | |
Definition at line 37 of file dnn_backend_native.h.
| DNNModel* ff_dnn_load_model_native | ( | const char * | model_filename | ) |
Definition at line 103 of file dnn_backend_native.c.
Referenced by ff_get_dnn_module(), and load_native_model().
| DNNReturnType ff_dnn_execute_model_native | ( | const DNNModel * | model, |
| DNNData * | outputs, | ||
| uint32_t | nb_output | ||
| ) |
Definition at line 309 of file dnn_backend_native.c.
Referenced by ff_get_dnn_module().
| void ff_dnn_free_model_native | ( | DNNModel ** | model | ) |
Definition at line 367 of file dnn_backend_native.c.
Referenced by ff_dnn_load_model_native(), ff_get_dnn_module(), and load_native_model().
1.8.17