Difference between revisions of "Video stream"

From Take-Air Wiki
Jump to navigation Jump to search
(Created page with "== Enable IMX219 camera over the microcoax cable ==")
 
Line 1: Line 1:
 +
The following instructions assume that the user is connected over SSH or use a terminal in a remote desktop.
 +
 
== Enable IMX219 camera over the microcoax cable ==
 
== Enable IMX219 camera over the microcoax cable ==
 +
# List of available overlays for your board can be listed using:
 +
#: <code> sudo /opt/nvidia/jetson-io/config-by-hardware.py -l</code>
 +
#: It should return:
 +
#: <syntaxhighlight lang="bash">Header 1 [default]: Jetson Nano CSI Connector
 +
  Available hardware modules:
 +
  1. IMX219 Microcoax Connector
 +
</syntaxhighlight>
 +
# Enable the camera:
 +
#: <code>sudo /opt/nvidia/jetson-io/config-by-hardware.py -n "IMX219 Microcoax Connector"</code>
 +
# Reboot:
 +
#: <code>reboot</code>
 +
# After reboot and login again, look if IMX219 device was detected:
 +
#: <code>dmesg | grep IMX219</code>
 +
 +
User who would like more of a guided way to enable the camera could use:
 +
 +
<code> sudo /opt/nvidia/jetson-io/jetson-io.py</code>
 +
 +
== Gstreamer pipeline ==
 +
 +
=== Host running Ubuntu 20.04 LTS ===
 +
 +
=== Host running Windows 10 ===

Revision as of 17:24, 29 October 2021

The following instructions assume that the user is connected over SSH or use a terminal in a remote desktop.

Enable IMX219 camera over the microcoax cable

  1. List of available overlays for your board can be listed using:
    sudo /opt/nvidia/jetson-io/config-by-hardware.py -l
    It should return:
    Header 1 [default]: Jetson Nano CSI Connector
      Available hardware modules:
      1. IMX219 Microcoax Connector
  2. Enable the camera:
    sudo /opt/nvidia/jetson-io/config-by-hardware.py -n "IMX219 Microcoax Connector"
  3. Reboot:
    reboot
  4. After reboot and login again, look if IMX219 device was detected:
    dmesg | grep IMX219

User who would like more of a guided way to enable the camera could use:

sudo /opt/nvidia/jetson-io/jetson-io.py

Gstreamer pipeline

Host running Ubuntu 20.04 LTS

Host running Windows 10