Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of contents

...

Table of Contents
minLevel1
maxLevel4

Preparation

...

Info

See here for how to get the CV Tool.

Installation target OS in the tutorial

  • Ubuntu 18.04.6 LTS

Install docker

Install the packages necessary for building the docker environment and set environment.

...

Code Block
$ sudo apt-get update
$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io

Import docker image file (First time only)

It takes several minutes until the import completes.

...

Code Block
$ cat cvtool_vx.xx.tar.bz2 | sudo docker import - [image name]

Create docker container (First time only)

Option “-v” is needed in sharing files between host and container.

...

Reference:https://matsuand.github.io/docs.docker.jp.onthefly/network/proxy/

Run CV Tool

Start the container.

Code Block
$ sudo docker start [container name]

...

Code Block
$ cd /home/cvtool
$ source setup_env.sh

Conversion

...

Please refer to the following page for model conversion.

...