diff options
author | Sergey Lavrushkin <dualfal@gmail.com> | 2018-05-25 20:31:04 +0300 |
---|---|---|
committer | Pedro Arthur <bygrandao@gmail.com> | 2018-05-29 10:02:30 -0300 |
commit | bdf1bbdbb4ebb342c0267d0f77cd06e717197e65 (patch) | |
tree | 9dcfad8953ce29cc74d8f152ee8c462cf4b72fe7 /libavfilter/dnn_backend_native.h | |
parent | cba167934bb2d634f400d3b06cec2b0f99d5de9d (diff) | |
download | ffmpeg-bdf1bbdbb4ebb342c0267d0f77cd06e717197e65.tar.gz |
Adds dnn inference module for simple convolutional networks. Reimplements srcnn filter based on it.
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/dnn_backend_native.h')
-rw-r--r-- | libavfilter/dnn_backend_native.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/libavfilter/dnn_backend_native.h b/libavfilter/dnn_backend_native.h new file mode 100644 index 0000000000..599c1302e2 --- /dev/null +++ b/libavfilter/dnn_backend_native.h @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2018 Sergey Lavrushkin + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** + * @file + * DNN inference functions interface for native backend. + */ + + +#ifndef AVFILTER_DNN_BACKEND_NATIVE_H +#define AVFILTER_DNN_BACKEND_NATIVE_H + +#include "dnn_interface.h" + +DNNModel* ff_dnn_load_model_native(const char* model_filename); + +DNNModel* ff_dnn_load_default_model_native(DNNDefaultModel model_type); + +DNNReturnType ff_dnn_execute_model_native(const DNNModel* model); + +void ff_dnn_free_model_native(DNNModel** model); + +#endif |