Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. # Setup Hardware/Software/Build Environment
  2.  
  3. It takes 4 steps to setup the entire development environment: Hardware Platform, Intel® RealSense™ Camera, Operating System and Build Environment.
  4.  
  5. 1. Hardware Platform: you can choose to use a Linux PC or a Linux IoT board (e.g. [Intel® Joule™ Module](https://software.intel.com/en-us/iot/hardware/joule)).
  6. - If you choose to use a Linux PC, please go to step 2.
  7. - If you choose an IoT board, you need to setup the hardware platform. Taking Intel® Joule™ Module for example, goto [online guide](https://software.intel.com/en-us/node/721460) for platform setup information.
  8. 1. Intel® RealSense™ camera: you need an [Intel® RealSense™](http://www.intel.com/content/www/us/en/architecture-and-technology/realsense-overview.html) camera to explore the full capabilities provided by this repository.
  9. - For SLAM, Object Library and Person Library, you can use an [Intel® RealSense™ Camera ZR300](https://newsroom.intel.com/chip-shots/intel-announces-tools-realsense-technology-development/).
  10. - For Object Library and Person Library, you can also use an [Intel® RealSense™ Camera R200](https://software.intel.com/en-us/realsense/r200camera)
  11. - (Optional): This [Intel® RealSense™ Cross Platform API](https://github.com/IntelRealSense/librealsense) repository provides [Installation Guide](https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md) including a [touble shooting section](https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md#troubleshooting-installation-and-patch-related-issues).
  12. 1. Operating System: Ubuntu 16.04 LTS is recommended.
  13. - If you choose to use a Linux PC, make sure you have Ubuntu 16.04 installed.
  14. - If you choose to use an Intel® Joule™ Module, following this [Installation Guide](https://developer.ubuntu.com/core/get-started/intel-joule#alternative-install:-ubuntu-desktop-16.04-lts) to install Ubuntu Operating System. Make sure you choose `Alternative install: Ubuntu Desktop 16.04 LTS`. A direct (but temporary) link to [*.iso image](http://people.canonical.com/~platform/snappy/tuchuck/desktop-beta4/tuchuck-xenial-desktop-iso-20170109-0.iso).
  15. - Please be noted that Intel® Joule™ Module might need a [BIOS update](https://software.intel.com/en-us/flashing-the-bios-on-joule) before installing an Operating System ([firmware v174](https://downloadmirror.intel.com/26206/eng/Joule-Firmware-2016-12-18-174-Public.zip) or above)
  16. 1. Build Environment: to install Intel® RealSense™ SDK for Linux, `Node.js` and necessary tool(s) for `Node.js` C++ add-on development.
  17. - Install Intel® RealSense™ SDK for Linux by following instructions listed in [Getting Started Guide](https://software.intel.com/sites/products/realsense/intro/getting_started.html)
  18. - Install `Node.js` and build tools.
  19.  
  20. ```
  21. # You know what they are
  22. sudo apt-get install nodejs npm
  23.  
  24. # An optional workaround of "Node not found" error
  25. sudo ln -s /usr/bin/nodejs /usr/bin/node
  26.  
  27. # Install the build tool for Node.js C++ add-on
  28. npm install -g node-gyp
  29. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement