All Projects → jeeliz → Jetsonjs

jeeliz / Jetsonjs

Licence: mit
Embed a JavaScript/WebGL application on a Nvidia Jetson TX2 and stream the results through websockets. It does not rely on CUDA/Jetpack. HDMI touchscreen, virtual keyboard, GPIO control, wifi config are included.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jetsonjs

Realsr Ncnn Vulkan
RealSR super resolution implemented with ncnn library
Stars: ✭ 357 (+1883.33%)
Mutual labels:  nvidia, gpu
Detect Gpu
Classifies GPUs based on their 3D rendering benchmark score allowing the developer to provide sensible default settings for graphically intensive applications.
Stars: ✭ 460 (+2455.56%)
Mutual labels:  webgl, gpu
Cuda Api Wrappers
Thin C++-flavored wrappers for the CUDA Runtime API
Stars: ✭ 362 (+1911.11%)
Mutual labels:  nvidia, gpu
Webclgl
GPGPU Javascript library 🐸
Stars: ✭ 313 (+1638.89%)
Mutual labels:  webgl, gpu
Webgl Wind
Wind power visualization with WebGL particles
Stars: ✭ 601 (+3238.89%)
Mutual labels:  webgl, gpu
Thrust
The C++ parallel algorithms library.
Stars: ✭ 3,595 (+19872.22%)
Mutual labels:  nvidia, gpu
Ilgpu
ILGPU JIT Compiler for high-performance .Net GPU programs
Stars: ✭ 374 (+1977.78%)
Mutual labels:  nvidia, gpu
Bmw Tensorflow Inference Api Gpu
This is a repository for an object detection inference API using the Tensorflow framework.
Stars: ✭ 277 (+1438.89%)
Mutual labels:  nvidia, gpu
Glchaos.p
3D GPUs Strange Attractors and Hypercomplex Fractals explorer - up to 256 Million particles in RealTime
Stars: ✭ 590 (+3177.78%)
Mutual labels:  webgl, gpu
Cudasift
A CUDA implementation of SIFT for NVidia GPUs (1.2 ms on a GTX 1060)
Stars: ✭ 555 (+2983.33%)
Mutual labels:  nvidia, gpu
Nvtop
NVIDIA GPUs htop like monitoring tool
Stars: ✭ 3,604 (+19922.22%)
Mutual labels:  nvidia, gpu
Tf Coriander
OpenCL 1.2 implementation for Tensorflow
Stars: ✭ 775 (+4205.56%)
Mutual labels:  nvidia, gpu
Komputation
Komputation is a neural network framework for the Java Virtual Machine written in Kotlin and CUDA C.
Stars: ✭ 295 (+1538.89%)
Mutual labels:  nvidia, gpu
Nvptx
How to: Run Rust code on your NVIDIA GPU
Stars: ✭ 335 (+1761.11%)
Mutual labels:  nvidia, gpu
Deep Diamond
A fast Clojure Tensor & Deep Learning library
Stars: ✭ 288 (+1500%)
Mutual labels:  nvidia, gpu
Stats
macOS system monitor in your menu bar
Stars: ✭ 7,134 (+39533.33%)
Mutual labels:  gpu, network
Gprmax
gprMax is open source software that simulates electromagnetic wave propagation using the Finite-Difference Time-Domain (FDTD) method for numerical modelling of Ground Penetrating Radar (GPR)
Stars: ✭ 268 (+1388.89%)
Mutual labels:  nvidia, gpu
Nativewebsocket
🔌 WebSocket client for Unity - with no external dependencies (WebGL, Native, Android, iOS, UWP)
Stars: ✭ 273 (+1416.67%)
Mutual labels:  webgl, websockets
Regl Cnn
Digit recognition with Convolutional Neural Networks in WebGL
Stars: ✭ 490 (+2622.22%)
Mutual labels:  webgl, gpu
Coriander
Build NVIDIA® CUDA™ code for OpenCL™ 1.2 devices
Stars: ✭ 665 (+3594.44%)
Mutual labels:  nvidia, gpu

JetsonJS

Embedded systems with JavaScript/WebGL.

Jetson TX2

Table of contents

Presentation

The Jetson TX2 is a SoM (System on Module) with a powerful GPU. It has no competitor on the market yet. It is mainly used for deep learning or image processing purposes, using Nvidia Cuda API or OpenCL.

We want to embed an application running with JavaScript/WebGL on a Nvidia Jetson. The application requires a good GPU computing power, that's why we use the Jetson instead of a cheaper Rasperry Pi or equivalent. It is an application using a Jeeliz library. For instance it can be a pupillometry application to build a standalone pupillometer.

With this project, we can setup the Jetson to run the application as an embedded application and possibly stream output data through websockets on a Wifi network. So we can transform a web application into an embedded application.

We do not use at all proprietary solutions like Cuda or Jetpack.

Features

Mandatory key features:

  • Server part running with Node.JS and providing:
    • A static HTTP service to host the client part
    • A dynamic Websocket service to communicate with the client part
  • A client part served by the server part in a web context (either with a full web browser like Chromium or Firefox or ideally Electron) and doing a GPU intensive task using WebGL API.

Optional features:

  • The client part can ask the server part to:
    • control the Jetson GPIOs
    • shutdown the Jetson
    • execute a specific bash command
    • connect to a wifi network
    • stream data to the server part
  • The client part can be displayed on a touchscreen
  • The client part can show these widgets:
    • a wifi configuration
    • a virtual keyboard (displayed on the touchscreen)
  • The server part can:
    • stream the data from the jetson client to an external websocket service
    • host a test interface through HTTP to view the data streamed by the jetson client

Architecture

  • /client: Client part of the application (running in the Jetson browser)
    • /JetsonJSClient.js: Client side API
    • /apps/: Jetson web applications (/apps/sampleApp is the example application) which will run into the Jetson browser
    • /electron/: Electron wrapper and main script
    • /libs/: various JavaScript libraries, compied into <appPath>/auto and served with static HTTP server later
  • /debug/: bash scripts, useful for debugging:
    • /startChromium.sh: start chromium browser on the Jetson
    • /stopAll.sh: stop Xorg and node on the Jetson
  • /server: NodeJS server part (running on the Jetson)
    • /JetsonJSServer.js: main server script, launched with NodeJS by startServer.sh
    • /startServer.sh: bash script to launch the server part
    • /services/: one script per network service (either through HTTP, or websockets)
    • /wrappers/: various scripts to run shell commands, to play with GPIOs, to config wifi...
    • /wifiConfigs/: save wifi configurations here
  • /test/index.html: test the final web application and the connection with the Jetson. Should be launched in your browser (NOT the Jetson browser)
  • /settings.js: default configuration file, both for client and server side
  • /setup.sh: the setup bash script (see the setup section)
  • /start.sh: the start bash script

Setup

We advise to install Ubuntu 16.04 LTS on the Jetson TX2. The Jetson TX2 devkit comes with Ubuntu 16.04LTS. If you have Ubuntu 14.04LTS, simply run sudo do-release-upgrade. We advise to not upgrade to Ubuntu 18.04LTS. We do not use Jetpack at all. You can check your Ubuntu version by running:

cat /etc/issue
Do a backup of your Jetson first! The setup script will remove some packages on your Jetson.

Hardware hookup

You need:

Instead of the touchscreen, you can also use a standard HDMI monitor and a mouse.

  • Put the jetson devkit in the metal case using 4 screws,
  • Plug the 2 wifi antennas provided with the Devkit,
  • Plug the keyboard and the touchscreen (or the mouse) by USB,
  • Plug the monitor to the HDMI,
  • Power on and push the poweron button on the carrier board.

Wifi connection

First we need to connect the Jetson to be able to download the required packages. If you have an ethernet cable, you can simply plug it to the Jetson and skip this part (and enter: sudo dhclient eth0 if the connection is not automatic). If you do not have an ethernet access you need to connect to the wifi. It is a bit more difficult. In our example we connect to the university network Eduroam. The configuration is a bit tricky and you may have to adapt it to your specific wifi settings.

We use NetworkManager in command line (not WPASupplicant).

View the available wifi networks:

nmcli device wifi list 

Connect to a network:

nmcli con add con-name <SSIDOFYOURNETWORK> ifname wlan0 type wifi ssid <SSIDOFYOURNETWORK>
nmcli con edit <SSIDOFYOURNETWORK>
nmcli> set ipv4.method auto
nmcli> set 802-1x.eap peap
nmcli> set 802-1x.identity <USERIFUSED>
nmcli> set 802-1x.phase2-auth mschapv2
nmcli> save
nmcli> quit

then edit the generated configuration file:

sudo vi /etc/NetworkManager/system-connections/<SSIDOFYOURNETWORK>

and put (type i to enter insert mode):

[wifi]
mode=infrastructure
...
[wifi-security]
group=
key-mgmt=wpa-eap
pairwise=
proto=
...
[802-1x]
password=<PASSWORD>
...

Press ESC to exit insert mode, then write :w then :q.

Finally restart network manager and connect:

sudo service network-manager restart
sudo nmcli con up <SSIDOFYOURNETWORK>

If it does not work, take a look at /var/log/syslog, nmcli logs into this file. Enter ifconfig to check that it is connected and to get the Jetson IP address, then connect to ssh from your computer:

ssh [email protected]<IPOFTHEJETSON>

The password is nvidia.

Setup packages

First we install the graphic drivers and we reboot. They are already on the Jetson memory, provided by Nvidia:

cd ~/NVIDIA-INSTALLER
sudo ./installer.sh
sudo reboot

Then I had to remove some locks and reconfigure some packages (I cannot simply update and upgrade I don't know why):

sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F60F4B3D7FA2AF80
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get autoremove
sudo apt-get autoclean

Clone this repository in ~/:

cd ~
git clone https://github.com/jeeliz/jetsonjs

Finally launch /setup.sh script. It will install Matchbox window manager, Nodejs, Electron and remove some useless stuffs:

cd ~/jetsonjs
./setup.sh

Security

The password by default is nvidia. Change it with:

sudo passwd nvidia

There is also a default user, ubuntu whose password is ubuntu. change it with:

sudo passwd ubuntu

And change the password of the root user:

sudo passwd root

Add sudo rights

Some scripts, like the GPIO setter script (/server/wrappers/setGPIO.sh) need to be executed as root. Run:

sudo visudo

and add:

nvidia ALL=(ALL) NOPASSWD: /home/nvidia/jetsonjs/server/wrappers/
nvidia ALL=(ALL) NOPASSWD: /sbin/shutdown
nvidia ALL=(ALL) NOPASSWD: /bin/mount
nvidia ALL=(ALL) NOPASSWD: /bin/umount
nvidia ALL=(ALL) NOPASSWD: /usr/bin/nmcli

Save and exit.

Autostart

You may want to auto start JetsonJS as the nvidia user in the TTY1. First you need to install mingetty to handle auto login:

mkdir ~/src
cd ~/src
wget https://ftp.sjtu.edu.cn/sites/ftp.debian.org/debian/pool/main/m/mingetty/mingetty_1.08-2_arm64.deb
sudo dpkg -i mingetty_1.08-2_arm64.deb

Then edit the TTY1 conf file: sudo nano /etc/init/tty1.conf and replace:

exec /sbin/getty -8 38400 tty1

by:

exec /sbin/mingetty --autologin nvidia --noclear tty1

Now we have to edit /home/nvidia/.bash_profile which is launch immediately after login. First we check in which TTY we are. If we are in tty1 we start JetsonJS. So we launch nano /home/nvidia/.bash_profile and we put at the end:

if [ $(tty) = "/dev/tty1" ]
then
  echo "launch JetsonJS from .bash_profile..."
  cd /home/nvidia/jetsonjs
  ./start.sh
fi

Specifications

JetsonJSClient.js

JetsonJSClient.js and settings.js should be included in the HTML code of the web application running on the Jetson:

<script src='auto/settings.js'></script>
<script src='auto/JetsonJSClient.js'></script>

You can take a look at /client/apps/sampleApp/ to get an example. These scripts are prefixed by auto/ because they are automatically hosted as <app path>/auto/ when the nodeJS server is launched. After the loading of the page you should initialize JETSONJSCLIENT with:

JETSONJSCLIENT.init({
  callbackReady:   // function, called when the API is initialized,
  callbackConnect: // function, called when the External client is connected or disconnected,
   // the external client is the user in the final browser
   // this function is called with a boolean as argument
   // which is true if a user is connected, false otherwise
   // this function allows to slow down the rendering loop to save the GPU
   // if no user is connected
  wifiConfigIds: // dictionnary, to connect the Wifi widget to the controller
   // see /client/apps/sampleApp/main.js to get an example
  keyboardTargetsClass: // string, class of the <input> where a virtual keyboard should be displayed
   // see  /client/apps/sampleApp/main.js to get an example
   // of integration of the virtual keyboard
  keyboardAttachId: // string, id of the element where the keyboard will be attached
})

You can then use these methods:

JETSONJSCLIENT.send_value(<dictionnary> dataDict): send a dictionnary of values to the server part. Example:

JETSONJSCLIENT.send_value({
  signalCos: Math.cos(w),
  signalSin: Math.sin(w)
})

JETSONJSCLIENT.exec_shellCmd(): execute a shell command. It can be useful to switch ON/OFF the Jetson GPIOs

JETSONJSCLIENT.fetch_wifi(): update the wifi networks list

JETSONJSCLIENT.set_GPIO(<int>number, <boolean>val): set the GPIO port number number to value val

JETSONJSCLIENT.shutdown(): shutdown the Jetson. It is an hardware shutdown (equivalent to the Unix command shutdown -h now)

JETSONJSCLIENT.close(): close the Electron window. Usefull for debug

JETSONJSCLIENT.open_electronDevTools(): open Electron development tools (for debugging purpose)

JETSONJSCLIENT.is_inElectron(): returns whether the script runs into electron or not

Final webapp

The final web application (not running in the Jetson but on the user's browser) connects to the Jetson through websockets and get the values.

This part is not mandatory: you can use JetsonJS to run JavaScript/WebGL code on the Jetson without linking it to an external web application. For example if the jetson is directly pluggued to an HDMI display.

There is no buffering: if a value is sent from the Jetson when the user is not connected, this value will be lost. We would rather drop some values than introducing a latency. The test application, served statically by the NodeJS server on port 3000 show how to connect externally to the Jetson websocket server and read the values:

const socket = new WebSocket('ws://'+jetsonIP+':8888') // port hould be server.serviceExtWSPort in settings.js
    
// Connection opened
socket.addEventListener('open', function (event) {
  console.log('Connected!')
});

// Listen for messages
const domLogs = document.getElementById('logs');
domLogs.value = '';
socket.addEventListener('message', function (event) {
  const dataParsed = JSON.parse(event.data);
  const typeLabel = dataParsed.t;
  const data = dataParsed.m;

  switch(typeLabel){
    case 'VAL':
      domLogs.value += JSON.stringify(data) + '\n';
      break;
  }
});

Specify configuration file

it is possible to specify another configuration file than settings.js. It can be useful to serve a client application and to use a configuration file outside the JetsonJS git repository. To specify a custom configuration file, you need to launch:

start.sh <pathOfConfigurationFile>

The path of the configuration file should be given as a relative path, from the root path of this project.

See also

@Jeeliz we have developed a very fast deep learning technology running in JavaScript/WebGL. It runs fully client side using the GPU of the device. It is perfect for progressive web applications. It is so fast that it can analyze video in real-time for these applications:

In some use cases, we need to embed our solution (for kiosks or IOT). The standard software stack proposed on the Jetson is useless with our framework because we do not use Cuda, so we did JetsonJS. Now, our technology can really run everywhere (embedded, mobile, desktop and web)!

Stay tunned to our bleeding edge developments by subscribing to our Youtube channel or Twitter @StartupJeeliz or our Linkedin page.

License

The MIT License (MIT)

Copyright (c) 2018 Jeeliz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].