Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Running starter

In terminal go to folder where PEKAT is installed (cd folder) and run

./pekat-vision -l

This both opens GUI (not available on Jetson) and also writes an address where you can access the web interface through your web browser. The -l option shows all logs also in the command line (without this option the logs are just written to file).

You can also use the host option for the same purpose:

./pekat-vision host -l

Creating project

In terminal go to folder where PEKAT is installed (cd folder) and run

./pekat-vision create -d path_to_new_project_directory -n name_of_project

Running specific existing project

In terminal go to folder where PEKAT is installed (cd folder) and run

./pekat-vision start -p port_number -d path_to_project

When project is started, you can open it in web browser on the address http://localhost:port_number

Running project on specific GPU

In terminal go to folder where PEKAT is installed (cd folder) and run

./pekat-vision start -p port_number -d path_to_project -g gpu_number -l

Note: GPU numbers start from 0

Example for running 2 projects on 2 different GPUs

In terminal go to folder where PEKAT is installed (cd folder) and run

./pekat-vision start -p 8000 -d path_to_project1 -g 0 -l

Open another terminal and run

./pekat-vision start -p 8010 -d path_to_project2 -g 1 -l

When projects are started, open them in browser on http://localhost:8000 and http://localhost:8010

Help

To get information about different parameters, you can use the -h option.
Help for starter:

./pekat-vision -h

Help for creating project:

./pekat-vision create -h

Help for starting project:

./pekat-vision start -h
  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.