|
OpenFFmpeg
|
DNN native backend implementation. More...
#include "dnn_backend_native.h"Macros | |
| #define | CLAMP_TO_EDGE(x, w) ((x) < 0 ? 0 : ((x) >= (w) ? (w - 1) : (x))) |
Functions | |
| DNNModel * | ff_dnn_load_model_native (const char *model_filename) |
| DNNReturnType | ff_dnn_execute_model_native (const DNNModel *model) |
| void | ff_dnn_free_model_native (DNNModel **model) |
DNN native backend implementation.
1.8.12