@@ -6,10 +6,10 @@ Configuring applications
66
77The demo config file uses YAML format to define input sources, models, outputs
88and finally the flows which defines how everything is connected. Config files
9- for out-of-box demos are kept in `` edgeai-gst-apps/configs ` ` folder. The
9+ for out-of-box demos are kept in :file: ` edgeai-gst-apps/configs ` folder. The
1010folder contains config files for all the use cases and also multi-input and
1111multi-inference case. The folder also has a template YAML file
12- `` app_config_template.yaml ` ` which has detailed explanation of all the
12+ :file: ` app_config_template.yaml ` which has detailed explanation of all the
1313parameters supported in the config file.
1414
1515Config file is divided in 4 sections:
@@ -62,7 +62,7 @@ which are exposed as v4l2 devices. In Linux, there are many devices which are
6262implemented as v4l2 devices. Not all of them will be camera devices. You need
6363to make sure the correct device is configured for running the demo successfully.
6464
65- `` init_script.sh ` ` is ran as part of systemd, which detects all cameras connected
65+ :file: ` init_script.sh ` is ran as part of systemd, which detects all cameras connected
6666and prints the detail like below in the console:
6767
6868.. code-block :: bash
@@ -80,7 +80,7 @@ and prints the detail like below in the console:
8080 script can also be run manually later to get the camera details.
8181
8282From the above log we can determine that 1 USB camera is connected
83- (/dev/video-usb-cam0), and 1 CSI camera is connected (/dev/video-imx219-cam0) which is IMX219 raw
83+ (:file: ` /dev/video-usb-cam0 ` ), and 1 CSI camera is connected (:file: ` /dev/video-imx219-cam0 ` ) which is IMX219 raw
8484sensor and needs ISP.
8585
8686Using this method, you can configure correct device for camera capture in the
@@ -112,7 +112,7 @@ Video sources
112112-------------
113113
114114H.264 and H.265 encoded videos can be provided as input sources to the demos.
115- Sample video files are provided under `` /opt/edgeai-test-data/videos/ ` `
115+ Sample video files are provided under :file: ` /opt/edgeai-test-data/videos/ `
116116
117117.. code-block :: yaml
118118
@@ -138,7 +138,7 @@ Image sources
138138-------------
139139
140140JPEG compressed images can be provided as inputs to the demos. A sample set of
141- images are provided under `` /opt/edgeai-test-data/images ` `. The names of the
141+ images are provided under :file: ` /opt/edgeai-test-data/images `. The names of the
142142files are numbered sequentially and incrementally and the demo plays the files
143143at the fps specified by the user.
144144
@@ -302,7 +302,7 @@ is 127.0.0.1.
302302 host : 127.0.0.1
303303 encoding : jpeg # (jpeg or h264)
304304
305- A NodeJS server is provided under `` /opt/edgeai-gst-apps/scripts/remote_streaming ` `
305+ A NodeJS server is provided under :file: ` /opt/edgeai-gst-apps/scripts/remote_streaming `
306306which establishes a node server on the target and listens to the udp port (8081)
307307on localhost (127.0.0.1) and can be used to view the frames remotely.
308308
@@ -345,7 +345,7 @@ GStreamer plugins
345345The edgeai-gst-apps essentially constructs GStreamer pipelines for dataflow.
346346This pipeline is constructed optimally and dynamically based on a pool of
347347specific plugins available on the platform. The defined pool of plugins for
348- different platform can be found in `` edgeai-gst-apps/configs/gst_plugin_maps.yaml ` `
348+ different platform can be found in :file: ` edgeai-gst-apps/configs/gst_plugin_maps.yaml `
349349file.
350350
351351This file contains the plugin used for certain task and the property of plugin
0 commit comments