Doxygen Book
tensor_filter.h File Reference

GStreamer plugin to use general neural network frameworks as filters. More...

#include <gst/gst.h>
#include <gst/gstinfo.h>
#include <gst/base/gstbasetransform.h>
#include "tensor_common.h"
#include "nnstreamer_subplugin.h"
#include "nnstreamer_plugin_api_filter.h"
#include "tensor_filter_common.h"
Include dependency graph for tensor_filter.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  _GstTensorFilter
 Internal data structure for tensor_filter instances. More...
 
struct  _GstTensorFilterClass
 GstTensorFilterClass inherits GstBaseTransformClass. More...
 

Macros

#define GST_TYPE_TENSOR_FILTER   (gst_tensor_filter_get_type())
 
#define GST_TENSOR_FILTER(obj)   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TENSOR_FILTER,GstTensorFilter))
 
#define GST_TENSOR_FILTER_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TENSOR_FILTER,GstTensorFilterClass))
 
#define GST_IS_TENSOR_FILTER(obj)   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TENSOR_FILTER))
 
#define GST_IS_TENSOR_FILTER_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TENSOR_FILTER))
 
#define GST_TENSOR_FILTER_CAST(obj)   ((GstTensorFilter *)(obj))
 

Typedefs

typedef struct _GstTensorFilter GstTensorFilter
 
typedef struct _GstTensorFilterClass GstTensorFilterClass
 

Functions

GType gst_tensor_filter_get_type (void)
 Get Type function required for gst elements. More...
 

Detailed Description

GStreamer plugin to use general neural network frameworks as filters.

GStreamer Tensor_Filter Copyright (C) 2005 Thomas Vander Stichele thoma.nosp@m.s@ap.nosp@m.estaa.nosp@m.rt.o.nosp@m.rg Copyright (C) 2005 Ronald S. Bultje rbult.nosp@m.je@r.nosp@m.onald.nosp@m..bit.nosp@m.freak.nosp@m..net Copyright (C) 2018 MyungJoo Ham myung.nosp@m.joo..nosp@m.ham@s.nosp@m.amsu.nosp@m.ng.co.nosp@m.m

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; version 2.1 of the License.

This library 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 Library General Public License for more details.

Date
24 May 2018
See also
http://github.com/nnstreamer/nnstreamer
Author
MyungJoo Ham myung.nosp@m.joo..nosp@m.ham@s.nosp@m.amsu.nosp@m.ng.co.nosp@m.m
Bug:
No known bugs except for NYI items
Todo:
TBD: Should we disable "in-place" mode? (what if output size > input size?)

Definition in file tensor_filter.h.

Macro Definition Documentation

◆ GST_IS_TENSOR_FILTER

#define GST_IS_TENSOR_FILTER (   obj)    (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TENSOR_FILTER))

Definition at line 49 of file tensor_filter.h.

◆ GST_IS_TENSOR_FILTER_CLASS

#define GST_IS_TENSOR_FILTER_CLASS (   klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TENSOR_FILTER))

Definition at line 51 of file tensor_filter.h.

◆ GST_TENSOR_FILTER

#define GST_TENSOR_FILTER (   obj)    (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TENSOR_FILTER,GstTensorFilter))

Definition at line 45 of file tensor_filter.h.

◆ GST_TENSOR_FILTER_CAST

#define GST_TENSOR_FILTER_CAST (   obj)    ((GstTensorFilter *)(obj))

Definition at line 53 of file tensor_filter.h.

◆ GST_TENSOR_FILTER_CLASS

#define GST_TENSOR_FILTER_CLASS (   klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TENSOR_FILTER,GstTensorFilterClass))

Definition at line 47 of file tensor_filter.h.

◆ GST_TYPE_TENSOR_FILTER

#define GST_TYPE_TENSOR_FILTER   (gst_tensor_filter_get_type())

Definition at line 43 of file tensor_filter.h.

Typedef Documentation

◆ GstTensorFilter

Definition at line 55 of file tensor_filter.h.

◆ GstTensorFilterClass

Definition at line 56 of file tensor_filter.h.

Function Documentation

◆ gst_tensor_filter_get_type()

GType gst_tensor_filter_get_type ( void  )

Get Type function required for gst elements.