You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
USB web camera, USB temperature and humidity sensors
OpenCV image processing, RSS client, WiFi AP
Use HDC Agent to push data to the Helix Device Cloud
Use node.js to run JavaScript apps for HDC data access and to run the web server
Use Wind River Rocket and Helix App Cloud to:
Connect to Wind River Pulsar
Control parking traffic lights
Use node-RED to manage and wire-up everything together
Use a standard web browser to present parking and weather data
Automatically send a tweet when you arrive at the office during bad weather
Setting up the environment
boot the Pulsar Linux
connect the USB camera
connect the USB temperature and humidity sensor
Setup the OpenCV
mkdir libidn
cd libidn/
wget -d ftp://alpha.gnu.org/pub/gnu/libidn/libidn-1.9.tar.gz
tar xfz libidn-1.9.tar.gz
cd libidn-1.9
./configure
make
make install
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
mkdir cmake
cd cmake/
wget https://cmake.org/files/v3.4/cmake-3.4.1-Linux-x86_64.tar.gz
tar -xvf cmake-3.4.1-Linux-x86_64.tar.gz
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/root/eng-sym/cmake/cmake-3.4.1-Linux-x86_64/bin/
git clone https://github.com/Itseez/opencv.git
cd opencv/
mkdir release
cd release/
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
make
make install