2020/10/03 Updated by

nVidia Jetson


[Up] Japanese English

サンプルプログラム

  1. インストール
  2.     $ mkdir ~/Documents
        $ cd ~/Documents
        $ git clone https://github.com/dusty-nv/jetson-inference
        $ cd jetson-inference
        $ git submodule update --init
        $ mkdir build
        $ cd build
        $ cmake ../
    
    Hello AI World
      Model Downloader
        [*] 1 Image Recognition - all models (2.2GB)
        [*] 2  > AlexNet                     (244 MB)
        [*] 3  > GoogleNet                   (54 MB) <--default
        [*] 4  > GoogleNet-12                (42 MB)
        [*] 5  > ResNet-18                   (47 MB) <--default
        [*] 6  > ResNet-50                   (102 MB)
        [*] 7  > ResNet-101                  (179 MB)
        [*] 8  > Resnet-152                  (242 MB)
        [*] 9  > VGG-16                      (554 MB)
        [*] 10 > VGG-19                      (575 MB)
    
    Hello AI World
      PyTorch Installer
        [*] PyTorch 1.6.0 for Python 3.6
    
    一旦Error で止まる。理由:python3-pip に一致するパッケージが見付かりません。
    sudo でrootのパスワードを要求されるので入れると、python3-pipを自動でインストールして続行してくれる
    
    
        $ make
        $ sudo make install
    
  3. ~/Documents/jetson-inference/build/aarch64/bin にバイナリができている。
  4.     $ cd ~/Documents/jetson-inference/build/aarch64/bin
        $ eog images/orange_0.jpg         ← images/の下にある画像ファイルを表示する。
        $ ./imagenet_console images/orange_0.jpg output_0.jpg
        $ eog output_0.jpg