Changes between Version 20 and Version 21 of TPU


Ignore:
Timestamp:
06/26/2020 05:40:58 PM (4 years ago)
Author:
Ryan Erbstoesser
Comment:

clean up titles

Legend:

Unmodified
Added
Removed
Modified
  • TPU

    v20 v21  
    5151
    5252
    53 = Getting started with the Coral Edge TPU
     53= Getting started with the Coral Edge TPU on Gateworks SBCs
    5454
    5555To begin you will need:
    5656* A workstation with Linux natively installed.
    57 * A Newport SBC — Coral requires AARCH64.
     57* A [https://www.gateworks.com/products/ Gateworks Newport SBC] — Coral requires AARCH64.
    5858* A Coral EDGE TPU, our testing was done with the mPCI-e form factor model.
    5959* !Network/Internet connection.
     
    7171
    7272== Building and installing the Gasket and Apex modules
    73 Video: https://youtu.be/PcrGUiuNBcg
     73Gateworks Video detailing the process: https://youtu.be/PcrGUiuNBcg
    7474
    7575The source code for the modules can be downloaded here as a tar.gz file:
     
    135135== Installing the TPU runtime
    136136
    137 Install Curl
     137Install the util curl
    138138{{{#!bash
    139139apt-get install curl -y
     
    172172
    173173
    174 == Download Classification example, test an inference operation
     174== Standard Demo: Downloading Classification example & Testing an Inference
    175175
    176176Create a place for the Coral examples to reside.
     
    187187bash install_requirements.sh
    188188}}}
    189 Run the classifcation demo.
     189Run the classification demo, passing in a image of a parrot, as shown with the last argument.
    190190{{{#!bash
    191191python3 classify_image.py \
     
    195195}}}
    196196
    197 == Gstreamer example
     197== Advanced Demo: Video Webcam Detection with GStreamer Example
    198198
    199199This example will use a USB webcam and the TPU to identify objects presented to the webcam. The video output and overlay will be streamed to a location on the network for viewing. 
     
    227227* The workstation being used in this example has an IP address of 172.24.24.93, the SBC is using an IP which is on the same subnet. 
    228228
    229 Launch Gstreamer on your workstation.
     229Launch Gstreamer on your workstation to receive the video from the Gateworks SBC:
    230230{{{#!bash
    231231gst-launch-1.0 tcpserversrc host=0.0.0.0 port=9001 ! jpegdec ! videoconvert ! autovideosink sync=false