aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/dnn_backend_tf.h
diff options
context:
space:
mode:
authorSergey Lavrushkin <dualfal@gmail.com>2018-06-03 20:22:50 +0300
committerPedro Arthur <bygrandao@gmail.com>2018-06-05 10:16:50 -0300
commitd8c0bbb0aa45eed61b159c4842473fe27e77ac12 (patch)
treecc3f2b09aacf93ea7d5ce42adfd62a4fcc561fb1 /libavfilter/dnn_backend_tf.h
parentddf6ff9dc6e6441b68b83b3bf047dbc573cc5b7c (diff)
downloadffmpeg-d8c0bbb0aa45eed61b159c4842473fe27e77ac12.tar.gz
Adds TensorFlow backend for dnn inference module.
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/dnn_backend_tf.h')
-rw-r--r--libavfilter/dnn_backend_tf.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/libavfilter/dnn_backend_tf.h b/libavfilter/dnn_backend_tf.h
new file mode 100644
index 0000000000..08e4a568b3
--- /dev/null
+++ b/libavfilter/dnn_backend_tf.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 TensorFlow backend.
+ */
+
+
+#ifndef AVFILTER_DNN_BACKEND_TF_H
+#define AVFILTER_DNN_BACKEND_TF_H
+
+#include "dnn_interface.h"
+
+DNNModel* ff_dnn_load_model_tf(const char* model_filename);
+
+DNNModel* ff_dnn_load_default_model_tf(DNNDefaultModel model_type);
+
+DNNReturnType ff_dnn_execute_model_tf(const DNNModel* model);
+
+void ff_dnn_free_model_tf(DNNModel** model);
+
+#endif