GstInference/Example pipelines with hierarchical metadata: Difference between revisions

From RidgeRun Developer Wiki
Line 1: Line 1:
<noinclude>
{{GstInference/Head|previous=Example pipelines/IMX8|next=Example Applications|keywords=inference metadata,hierarchical metadata|title=GstInference GStreamer example pipelines with hierarchical metadata}}
</noinclude>
<!-- If you want a custom title for the page, un-comment and edit this line:
{{DISPLAYTITLE:GstInference - <descriptive page name>|noerror}}
-->
__TOC__
== Sample pipelines ==
The following section contains a tool for generating simple GStreamer pipelines with one model of a selected architecture using our hierarchical inference metadata. If you are using and older version, you can check the legacy pipelines section. Please make sure to check the documentation to understand the property usage for each element.
The required elements are:
* Backend
* Model
* Model location
* Labels
* Source
* Sink
The optional elements include:
* inferencefilter
* inferencrop
* inferenceoverlay 
[[File:Inference example.png|1000px|thumb|center|Detection with new metadata]]
<noinclude>
<noinclude>
{{GstInference/Head|previous=Example pipelines/IMX8|next=Example Applications|keywords=inference metadata,hierarchical metadata|title=GstInference GStreamer example pipelines with hierarchical metadata}}
{{GstInference/Head|previous=Example pipelines/IMX8|next=Example Applications|keywords=inference metadata,hierarchical metadata|title=GstInference GStreamer example pipelines with hierarchical metadata}}
Line 417: Line 446:
       break;
       break;
     case "onnxrt" :
     case "onnxrt" :
      search_option("tinyyolov3","TinyYolov3","model","add");
       search_option("facenetv1","FaceNet","model","remove");
       search_option("facenetv1","FaceNet","model","remove");
      search_option("tinyyolov3","TinyYolov3","model","add");
       disable_element("inputlayer");
       disable_element("inputlayer");
       disable_element("outputlayer");
       disable_element("outputlayer");
      }
       break;
       break;
     case "tflite" :
     case "tflite" :
Line 656: Line 684:
</html>
</html>
<br>
<br>
== Advanced pipelines ==
<br>
<noinclude>
{{GstInference/Foot|Example pipelines/IMX8|Example Applications}}
</noinclude>


== Advanced pipelines ==
== Advanced pipelines ==

Revision as of 16:37, 6 July 2020




Previous: Example pipelines/IMX8 Index Next: Example Applications





Sample pipelines

The following section contains a tool for generating simple GStreamer pipelines with one model of a selected architecture using our hierarchical inference metadata. If you are using and older version, you can check the legacy pipelines section. Please make sure to check the documentation to understand the property usage for each element.

The required elements are:

  • Backend
  • Model
  • Model location
  • Labels
  • Source
  • Sink

The optional elements include:

  • inferencefilter
  • inferencrop
  • inferenceoverlay


Detection with new metadata





Previous: Example pipelines/IMX8 Index Next: Example Applications






Sample pipelines

The following section contains a tool for generating simple GStreamer pipelines with one model of a selected architecture using our hierarchical inference metadata. If you are using and older version, you can check the legacy pipelines section. Please make sure to check the documentation to understand the property usage for each element.

The required elements are:

  • Backend
  • Model
  • Model location
  • Labels
  • Source
  • Sink

The optional elements include:

  • inferencefilter
  • inferencrop
  • inferenceoverlay


Detection with new metadata

Pipeline Generator



The following tool will provide simple pipelines according to the selected elements.

Optional utilites

The following elements are optional yet very useful. Check the documentation for more details on their properties.


Advanced pipelines


Previous: Example pipelines/IMX8 Index Next: Example Applications



Advanced pipelines


Previous: Example pipelines/IMX8 Index Next: Example Applications